Esempio n. 1
0
 public ApplicationBookingService(
     IApplicationAddressService addressService,
     IApplicationBillService billService,
     IApplicationRouteService routeService)
 {
     AddressService = addressService;
     BillService    = billService;
     RouteService   = routeService;
 }
Esempio n. 2
0
 public ApplicationOrderService(
     ITransactionService transactionService,
     IOrderService domainOrderService,
     IApplicationOrderStateService orderStateService,
     IApplicationCargoService cargoService,
     IApplicationRouteService routeService,
     IApplicationCustomerService customerService,
     IApplicationBillService billService)
     : base(transactionService)
 {
     DomainOrderService = domainOrderService;
     OrderStateService  = orderStateService;
     CargoService       = cargoService;
     RouteService       = routeService;
     CustomerService    = customerService;
     BillService        = billService;
 }