public OrdersController(IAppServiceOrders appServiceOrders,
                         IAppServiceProducts appServiceProducts,
                         IAppServiceCustomers appServiceCustomers
                         )
 {
     _AppServiceOrders    = appServiceOrders;
     _AppServiceProducts  = appServiceProducts;
     _AppServiceCustomers = appServiceCustomers;
 }
 public ShoppingCartController(IAppServiceOrders appService)
 {
     _AppServiceOrders = appService;
 }