From 451d5d28bc0cd780a5143ede08976974646d1809 Mon Sep 17 00:00:00 2001 From: kittapath Date: Thu, 15 Aug 2024 23:31:34 +0700 Subject: [PATCH] edit build error --- BMA.EHR.Application/Repositories/GenericRepository.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/BMA.EHR.Application/Repositories/GenericRepository.cs b/BMA.EHR.Application/Repositories/GenericRepository.cs index cdf4ef4b..36d2d9c7 100644 --- a/BMA.EHR.Application/Repositories/GenericRepository.cs +++ b/BMA.EHR.Application/Repositories/GenericRepository.cs @@ -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(); _httpContextAccessor = httpContextAccessor; - _configuration = configuration; + // _configuration = configuration; } #endregion