public InsuranceController(IInsuranceTypeService insuranceTypeService, IInsuranceService insuranceService, ICompanyService companyService, ICompanyLogService companyLogService) { this.insuranceTypeService = insuranceTypeService; this.insuranceService = insuranceService; this.companyService = companyService; this.companyLogService = companyLogService; }
public CompanyController(ICompanyService companyService, ICompanyLogService companyLogService) { this.companyService = companyService; this.companyLogService = companyLogService; }