public RoomItemDetailController()
 {
     _db          = new RoomItemDetailServices();
     _dbroom      = new RoomServices();
     _dbstore     = new StoreServices();
     _dbstockitem = new StockItemServices();
 }
 public KitchenItemDetailController()
 {
     _dbKitchenitem = new KitchenItemDetailServices();
     _dbstore       = new StoreServices();
     _dbkitchen     = new KitchenServices();
     _dbstockitem   = new StockItemServices();
 }
Esempio n. 3
0
 public OrderController(
     IStockItemServices stockItemServices,
     IOrderRepository orderRepository,
     IBusPublisher busClient,
     ITenant tenant
     )
 {
     _orderRepository   = orderRepository;
     _stockItemServices = stockItemServices;
     _busClient         = busClient;
     _tenant            = tenant;
 }
 public StockItemController()
 {
     _db      = new StockItemServices();
     _dbstore = new StoreServices();
 }