diff --git a/CompanyManagment.Application/EmployeeAplication.cs b/CompanyManagment.Application/EmployeeAplication.cs index c424497f..9b218722 100644 --- a/CompanyManagment.Application/EmployeeAplication.cs +++ b/CompanyManagment.Application/EmployeeAplication.cs @@ -65,20 +65,26 @@ public class EmployeeAplication : RepositoryBase, IEmployeeAppli private readonly ILeftWorkInsuranceRepository _leftWorkInsuranceRepository ; private readonly IRollCallServiceRepository _rollCallServiceRepository; - public EmployeeAplication(IEmployeeRepository employeeRepository, CompanyContext context, IWorkshopRepository workShopRepository, + public EmployeeAplication(IEmployeeRepository employeeRepository, CompanyContext context, + IWorkshopRepository workShopRepository, ILeftWorkRepository leftWorkRepository, IPersonnelCodeRepository personnelCodeRepository, IEmployeeClientTempRepository employeeClientTempRepository, IWebHostEnvironment webHostEnvironment, - IRollCallEmployeeStatusApplication rollCallEmployeeStatusApplication, IRollCallEmployeeRepository rollCallEmployeeRepository, + IRollCallEmployeeStatusApplication rollCallEmployeeStatusApplication, + IRollCallEmployeeRepository rollCallEmployeeRepository, ICustomizeWorkshopGroupSettingsRepository customizeWorkshopGroupSettingsRepository, - ICustomizeWorkshopSettingsApplication customizeWorkshopSettingsApplication, IEmployeeDocumentsApplication employeeDocumentsApplication, - IEmployeeBankInformationApplication employeeBankInformationApplication, ILeftWorkTempRepository leftWorkTempRepository, - IUidService uidService, ICustomizeWorkshopEmployeeSettingsRepository customizeWorkshopEmployeeSettingsRepository, - IEmployeeAuthorizeTempRepository employeeAuthorizeTempRepository, IRollCallServiceRepository rollCallServiceRepository) : base(context) + ICustomizeWorkshopSettingsApplication customizeWorkshopSettingsApplication, + IEmployeeDocumentsApplication employeeDocumentsApplication, + IEmployeeBankInformationApplication employeeBankInformationApplication, + ILeftWorkTempRepository leftWorkTempRepository, + IUidService uidService, + ICustomizeWorkshopEmployeeSettingsRepository customizeWorkshopEmployeeSettingsRepository, + IEmployeeAuthorizeTempRepository employeeAuthorizeTempRepository, + IRollCallServiceRepository rollCallServiceRepository, ILeftWorkInsuranceRepository leftWorkInsuranceRepository) : base(context) { _context = context; _WorkShopRepository = workShopRepository; _EmployeeRepository = employeeRepository; - this._leftWorkRepository = leftWorkRepository; + this._leftWorkRepository = leftWorkRepository; _personnelCodeRepository = personnelCodeRepository; _employeeClientTempRepository = employeeClientTempRepository; _webHostEnvironment = webHostEnvironment;