public ApplicationCityService(
     ITransactionService transactionService,
     ICityService domainCityService,
     IApplicationAddressService addressService,
     IApplicationPricelistService pricelistService)
     : base(transactionService)
 {
     DomainCityService = domainCityService;
     AddressService    = addressService;
     PricelistService  = pricelistService;
 }
 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;
 }