Example #1
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;
 }
 public CargosController(IApplicationCargoService service)
 {
     Service = service;
 }