public JobWorkController(IJobWorkTypeService JobWorkTypeService, IUtilityService UtilityService, IModuleService ModuleService,
                          IUserCredentialService UserCredentialService, IJobWorkerService JobWorkerService, IStateService StateService, ICityService CityService,
                          IBankNameService BankNameService, IBloodGroupService BloodGroupService, IYearExperienceService YearExperienceService, IMonthExperienceService MonthExperienceService,
                          IDepartmentService DepartmentService, IDesignationMasterService DesignationMasterService, ITypeOfSupplierService TypeOfSupplierService,
                          IBankService BankService, IJobWorkPaymentService JobWorkPaymentService, IOutwardToTailorService OutwardToTailorService,
                          IOutwardToTailorItemService OutwardToTailorItemService, IJobWorkStockService JobWorkStockService, IJobWorkOutwardToClientService JobWorkOutwardToClientService)
 {
     this._JobWorkTypeService            = JobWorkTypeService;
     this._utilityService                = UtilityService;
     this._ModuleService                 = ModuleService;
     this._IUserCredentialService        = UserCredentialService;
     this._JobWorkerService              = JobWorkerService;
     this._StateService                  = StateService;
     this._CityService                   = CityService;
     this._BankNameService               = BankNameService;
     this._BloodGroupService             = BloodGroupService;
     this._YearExperienceService         = YearExperienceService;
     this._MonthExperienceService        = MonthExperienceService;
     this._DepartmentService             = DepartmentService;
     this._DesignationMasterService      = DesignationMasterService;
     this._TypeOfSupplierService         = TypeOfSupplierService;
     this._BankService                   = BankService;
     this._JobWorkPaymentService         = JobWorkPaymentService;
     this._OutwardToTailorService        = OutwardToTailorService;
     this._OutwardToTailorItemService    = OutwardToTailorItemService;
     this._JobWorkStockService           = JobWorkStockService;
     this._JobWorkOutwardToClientService = JobWorkOutwardToClientService;
 }
 public OutwardToTailorController(IUtilityService UtilityService, IModuleService ModuleService, IUserCredentialService IUserCredentialService,
                                  IOutwardToTailorService OutwardToTailorService, IOutwardToTailorItemService OutwardToTailorItemService, IClientMasterService ClientMasterService, IRetailBillService RetailBillService, IRetailBillItemService RetailBillItemService,
                                  ISalesBillService SalesBillService, ISalesBillItemService SalesBillItemService, IJobWorkTypeService JobWorkTypeService, IJobWorkerService JobWorkerService, IEmployeeMasterService EmployeeMasterService, IJobWorkPaymentService JobWorkPaymentService)
 {
     this._UtilityService             = UtilityService;
     this._ModuleService              = ModuleService;
     this._IUserCredentialService     = IUserCredentialService;
     this._OutwardToTailorService     = OutwardToTailorService;
     this._OutwardToTailorItemService = OutwardToTailorItemService;
     this._ClientMasterService        = ClientMasterService;
     this._RetailBillService          = RetailBillService;
     this._RetailBillItemService      = RetailBillItemService;
     this._SalesBillService           = SalesBillService;
     this._SalesBillItemService       = SalesBillItemService;
     this._JobWorkTypeService         = JobWorkTypeService;
     this._JobWorkerService           = JobWorkerService;
     this._EmployeeMasterService      = EmployeeMasterService;
     this._JobWorkPaymentService      = JobWorkPaymentService;
 }