public ProductCRUD(Sales.DAL.Interfaces.ISalesUnitOfWork uow)
 {
     unit   = uow;
     Mapper = new BLMapper();
 }
Exemple #2
0
 public PriceHistoryCRUD(Sales.DAL.Interfaces.ISalesUnitOfWork uow)
 {
     unit   = uow;
     Mapper = new BLMapper();
 }
Exemple #3
0
 public ManagerCRUD(Sales.DAL.Interfaces.ISalesUnitOfWork uow)
 {
     unit   = uow;
     Mapper = new BLMapper();
 }
 public OperationCRUD(Sales.DAL.Interfaces.ISalesUnitOfWork uow)
 {
     unit   = uow;
     Mapper = new BLMapper();
 }
Exemple #5
0
 public void Connect(string connectionString)
 {
     unit = new Sales.DAL.Repositories.SalesUnitOfWork(connectionString);
 }