edit build error

This commit is contained in:
kittapath 2024-08-15 23:31:34 +07:00
parent 6a9e069920
commit 451d5d28bc

View file

@ -27,13 +27,12 @@ namespace BMA.EHR.Application.Repositories
#region " Constructor and Destructor "
public GenericRepository(IApplicationDBContext dbContext,
IHttpContextAccessor httpContextAccessor,
IConfiguration configuration)
IHttpContextAccessor httpContextAccessor)
{
_dbContext = dbContext;
_dbSet = _dbContext.Set<T>();
_httpContextAccessor = httpContextAccessor;
_configuration = configuration;
// _configuration = configuration;
}
#endregion