Пример #1
0
 public CarrierService(
     IMapper mapper,
     IUnitOfWorkOrder unitOfWork)
 {
     _mapper     = mapper;
     _unitOfWork = unitOfWork;
 }
Пример #2
0
 public StoreService(
     IMapper mapper,
     IUnitOfWorkOrder unitOfWork)
 {
     _mapper     = mapper;
     _unitOfWork = unitOfWork;
 }
Пример #3
0
 public InventoryOrderService(
     IMapper mapper,
     IUnitOfWorkOrder unitOfWork)
 {
     _mapper     = mapper;
     _unitOfWork = unitOfWork;
 }
Пример #4
0
 public EmployeeService(
     IMapper mapper,
     IUnitOfWorkOrder unitOfWork)
 {
     _mapper     = mapper;
     _unitOfWork = unitOfWork;
 }
 public PaymentMethodService(
     IMapper mapper,
     IUnitOfWorkOrder unitOfWork)
 {
     _mapper     = mapper;
     _unitOfWork = unitOfWork;
 }
Пример #6
0
 public OrderService(
     IMapper mapper,
     IUnitOfWorkOrder unitOfWork,
     IInventoryOrderService inventoryService)
 {
     _mapper           = mapper;
     _unitOfWork       = unitOfWork;
     _inventoryService = inventoryService;
 }
Пример #7
0
 public OrderService(
     IMapper mapper,
     IUnitOfWorkOrder unitOfWork,
     OrderDbContext salesDbContext
     )
 {
     _mapper         = mapper;
     _unitOfWork     = unitOfWork;
     _salesDbContext = salesDbContext;
 }
Пример #8
0
 public OrderService(
     IMapper mapper,
     IUnitOfWorkOrder unitOfWork,
     IInventoryOrderService inventoryService,
     OrderDbContext salesDbContext
     )
 {
     _mapper           = mapper;
     _unitOfWork       = unitOfWork;
     _inventoryService = inventoryService;
     _salesDbContext   = salesDbContext;
 }
Пример #9
0
 public OrderService(IUnitOfWorkOrder data)
 {
     Database = data;
 }