Exemplo n.º 1
0
 public StoreController(IStoreDatabase storeDatabase, IStockItemDatabase stockItemDatabase)
 {
     _storeDatabase     = storeDatabase;
     _stockItemDatabase = stockItemDatabase;
 }
Exemplo n.º 2
0
 public StockItemController(IStockItemDatabase stockItemDatabase, IStoreDatabase storeDatabase, IProductDatabase productDatabase)
 {
     _stockItemDatabase = stockItemDatabase;
     _storeDatabase     = storeDatabase;
     _productDatabase   = productDatabase;
 }