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