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 " #region " Constructor and Destructor "
public GenericRepository(IApplicationDBContext dbContext, public GenericRepository(IApplicationDBContext dbContext,
IHttpContextAccessor httpContextAccessor, IHttpContextAccessor httpContextAccessor)
IConfiguration configuration)
{ {
_dbContext = dbContext; _dbContext = dbContext;
_dbSet = _dbContext.Set<T>(); _dbSet = _dbContext.Set<T>();
_httpContextAccessor = httpContextAccessor; _httpContextAccessor = httpContextAccessor;
_configuration = configuration; // _configuration = configuration;
} }
#endregion #endregion