示例#1
0
 /// <summary>
 /// Constructor
 /// </summary>
 public RaInsuranceRtsController(IInsuranceTypeService insuranceRateService)
 {
     if (insuranceRateService == null)
     {
         throw new ArgumentNullException("insuranceRateService");
     }
     this.insuranceRateService = insuranceRateService;
 }
示例#2
0
 public InsuranceController(IInsuranceTypeService insuranceTypeService,
                            IInsuranceService insuranceService, ICompanyService companyService,
                            ICompanyLogService companyLogService)
 {
     this.insuranceTypeService = insuranceTypeService;
     this.insuranceService     = insuranceService;
     this.companyService       = companyService;
     this.companyLogService    = companyLogService;
 }
示例#3
0
 /// <summary>
 /// Insurance Type Controller
 /// </summary>
 /// <param name="insuranceTypeService"></param>
 /// <param name="logger"></param>
 public InsuranceTypeController(IInsuranceTypeService insuranceTypeService,
                                ILogger <ControllerBase> logger) : base(logger)
 {
     _insuranceTypeService = insuranceTypeService;
 }
示例#4
0
 /// <summary>
 /// Constructor
 /// </summary>
 public InsuranceTypeController(IInsuranceTypeService insuranceTypeService)
 {
     this.insuranceTypeService = insuranceTypeService;
 }
示例#5
0
 public HomeController(IInsuranceTypeService insuranceTypeService)
 {
     _insuranceTypeService = insuranceTypeService;
 }