Esempio n. 1
0
 public ProductBiz(IProductLayer productLayer)
 {
     _productLayer = productLayer;
 }
Esempio n. 2
0
 public ProductManager(IProductLayer productLayer)
 {
     _productLayer = productLayer;
 }
 public ProductDataAccessLayerUnitTest()
 {
     startup = new Startup();
     _porwalGeneralStoreContext = startup._inMemoryContext;
     _productLayer = new ProductLayer(_porwalGeneralStoreContext);
 }