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