Example #1
0
 public UserService(IStoreDbContext dbContext)
 {
     DbContext = dbContext;
 }
Example #2
0
 internal ProductRepository(IStoreDbContext context) : base(context)
 {
 }
Example #3
0
 public CustomerService(IStoreDbContext dbContext)
 {
     DbContext = dbContext;
 }
Example #4
0
 public OrderBusiness()
 {
     _storeDbContext = StoreDbContextFactory.Create();
 }
Example #5
0
 public Handler(IStoreDbContext context, IMediator mediator)
 {
     _context  = context;
     _mediator = mediator;
 }
Example #6
0
 internal FeatureValueRepository(IStoreDbContext context) : base(context)
 {
 }
Example #7
0
 public GetOrderByIdQueryHandler(IStoreDbContext storeDbContext, IMapper mapper)
 {
     _storeDbContext = storeDbContext;
     _mapper         = mapper;
 }
Example #8
0
 public ProductService(IStoreDbContext dbContext)
 {
     DbContext = dbContext;
 }
Example #9
0
 public CreateOrderCommandHandler(IStoreDbContext storeDbContext, IRuleEngine ruleEngine, IMapper mapper)
 {
     _storeDbContext = storeDbContext;
     _ruleEngine     = ruleEngine;
     _mapper         = mapper;
 }
Example #10
0
 public EmployeeService(IStoreDbContext dbContext)
 {
     DbContext = dbContext;
 }