Ejemplo n.º 1
0
 public InsuranceController(IInsuranceTypeService insuranceTypeService,
                            IInsuranceService insuranceService, ICompanyService companyService,
                            ICompanyLogService companyLogService)
 {
     this.insuranceTypeService = insuranceTypeService;
     this.insuranceService     = insuranceService;
     this.companyService       = companyService;
     this.companyLogService    = companyLogService;
 }
Ejemplo n.º 2
0
 public CompanyController(ICompanyService companyService, ICompanyLogService companyLogService)
 {
     this.companyService    = companyService;
     this.companyLogService = companyLogService;
 }