示例#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;
 }
 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;
 }