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