Exemple #1
0
 public ADOProductsRepository(ProductTableGateway tableGateway)
 {
     _tableGateway = tableGateway;
 }
Exemple #2
0
 public ADOUnitOfWork(string connectionName)
 {
     _productCategoryTableGateway = new ProductCategoryTableGateway(connectionName);
     _productTableGateway         = new ProductTableGateway(connectionName);
     _vendorTableGateway          = new VendorTableGateway(connectionName);
 }