コード例 #1
0
 public ProductCRUD(Sales.DAL.Interfaces.ISalesUnitOfWork uow)
 {
     unit   = uow;
     Mapper = new BLMapper();
 }
コード例 #2
0
 public PriceHistoryCRUD(Sales.DAL.Interfaces.ISalesUnitOfWork uow)
 {
     unit   = uow;
     Mapper = new BLMapper();
 }
コード例 #3
0
 public ManagerCRUD(Sales.DAL.Interfaces.ISalesUnitOfWork uow)
 {
     unit   = uow;
     Mapper = new BLMapper();
 }
コード例 #4
0
 public OperationCRUD(Sales.DAL.Interfaces.ISalesUnitOfWork uow)
 {
     unit   = uow;
     Mapper = new BLMapper();
 }
コード例 #5
0
ファイル: Handler.cs プロジェクト: divo-voron/Epam_training
 public void Connect(string connectionString)
 {
     unit = new Sales.DAL.Repositories.SalesUnitOfWork(connectionString);
 }