28 lines
804 B
C#
28 lines
804 B
C#
using BMA.EHR.Application.Common.Interfaces;
|
|
using BMA.EHR.Domain.Entities.MetaData.Prefix;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace BMA.EHR.Application.Repositories.Prefix
|
|
{
|
|
public class PrefixRepository : GenericRepository<Guid, PrefixEntity>
|
|
{
|
|
#region " Fields "
|
|
|
|
private readonly IApplicationDBContext _dbContext;
|
|
private readonly IHttpContextAccessor _httpContextAccessor;
|
|
|
|
#endregion
|
|
|
|
#region " Constructor and Destructor "
|
|
|
|
public PrefixRepository(IApplicationDBContext dbContext,
|
|
IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor)
|
|
{
|
|
_dbContext = dbContext;
|
|
_httpContextAccessor = httpContextAccessor;
|
|
}
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|