Esempio n. 1
0
 public OrderViewController(
     IOrderService orderService,
     ICustomerService customerService,
     IDriverService driverService,
     IOrderLinesService orderLinesService
     ) : base()
 {
     mOrderService          = orderService;
     mCustomerService       = customerService;
     mDriverService         = driverService;
     mOrderLinesService     = orderLinesService;
     mUpdateConflictMessage = "Die Bestellung konnte nicht gespeichert werden.";
 }
Esempio n. 2
0
 public RevenueListViewController(IOrderLinesService orderLinesService) : base()
 {
     mOrderLinesService = orderLinesService;
 }
 public BestsellerViewController(IOrderLinesService orderLinesService) : base()
 {
     mOrderLinesService = orderLinesService;
 }