Ejemplo n.º 1
0
 public ADOVendorsRepository(VendorTableGateway tableGateway)
 {
     _tableGateway = tableGateway;
 }
Ejemplo n.º 2
0
 public ADOUnitOfWork(string connectionName)
 {
     _productCategoryTableGateway = new ProductCategoryTableGateway(connectionName);
     _productTableGateway         = new ProductTableGateway(connectionName);
     _vendorTableGateway          = new VendorTableGateway(connectionName);
 }