コード例 #1
0
 public ApplicationGarageService(
     ITransactionService transactionService,
     IGarageService domainGarageService,
     IApplicationCityService cityService,
     IApplicationAddressService addressService)
     : base(transactionService)
 {
     DomainGarageService = domainGarageService;
     CityService         = cityService;
     AddressService      = addressService;
 }
コード例 #2
0
 public ApplicationBillService(
     ITransactionService transactionService,
     IBillService domainBillService,
     IBillItemService domainBillItemService,
     IBasketService domainBasketService,
     IApplicationPricelistService pricelistService,
     IApplicationCityService cityService)
     : base(transactionService)
 {
     DomainBillService     = domainBillService;
     DomainBillItemService = domainBillItemService;
     DomainBasketService   = domainBasketService;
     PricelistService      = pricelistService;
     CityService           = cityService;
 }