コード例 #1
0
 public InsuranceController(IInsuranceTypeService insuranceTypeService,
                            IInsuranceService insuranceService, ICompanyService companyService,
                            ICompanyLogService companyLogService)
 {
     this.insuranceTypeService = insuranceTypeService;
     this.insuranceService     = insuranceService;
     this.companyService       = companyService;
     this.companyLogService    = companyLogService;
 }
コード例 #2
0
 public CompanyController(ICompanyService companyService, ICompanyLogService companyLogService)
 {
     this.companyService    = companyService;
     this.companyLogService = companyLogService;
 }