Exemplo n.º 1
0
 public CarrierService(
     IMapper mapper,
     IUnitOfWorkOrder unitOfWork)
 {
     _mapper     = mapper;
     _unitOfWork = unitOfWork;
 }
Exemplo n.º 2
0
 public StoreService(
     IMapper mapper,
     IUnitOfWorkOrder unitOfWork)
 {
     _mapper     = mapper;
     _unitOfWork = unitOfWork;
 }
Exemplo n.º 3
0
 public InventoryOrderService(
     IMapper mapper,
     IUnitOfWorkOrder unitOfWork)
 {
     _mapper     = mapper;
     _unitOfWork = unitOfWork;
 }
Exemplo n.º 4
0
 public EmployeeService(
     IMapper mapper,
     IUnitOfWorkOrder unitOfWork)
 {
     _mapper     = mapper;
     _unitOfWork = unitOfWork;
 }
 public PaymentMethodService(
     IMapper mapper,
     IUnitOfWorkOrder unitOfWork)
 {
     _mapper     = mapper;
     _unitOfWork = unitOfWork;
 }
Exemplo n.º 6
0
 public OrderService(
     IMapper mapper,
     IUnitOfWorkOrder unitOfWork,
     IInventoryOrderService inventoryService)
 {
     _mapper           = mapper;
     _unitOfWork       = unitOfWork;
     _inventoryService = inventoryService;
 }
Exemplo n.º 7
0
 public OrderService(
     IMapper mapper,
     IUnitOfWorkOrder unitOfWork,
     OrderDbContext salesDbContext
     )
 {
     _mapper         = mapper;
     _unitOfWork     = unitOfWork;
     _salesDbContext = salesDbContext;
 }
Exemplo n.º 8
0
 public OrderService(
     IMapper mapper,
     IUnitOfWorkOrder unitOfWork,
     IInventoryOrderService inventoryService,
     OrderDbContext salesDbContext
     )
 {
     _mapper           = mapper;
     _unitOfWork       = unitOfWork;
     _inventoryService = inventoryService;
     _salesDbContext   = salesDbContext;
 }
Exemplo n.º 9
0
 public OrderService(IUnitOfWorkOrder data)
 {
     Database = data;
 }