public DeleteEmployeeCommandHandler(IShoppingDataContext context, IUserManagerService userManager,
                                     ICurrentUserService currentUser)
 {
     _context     = context;
     _userManager = userManager;
     _currentUser = currentUser;
 }
 public CreateProductCommandHandler(IShoppingDataContext context)
 {
     _context = context;
 }
 public GetEmployeeDetailQueryHandler(IShoppingDataContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public CreateCustomerCommandHandler(IShoppingDataContext context, IMediator mediator)
 {
     _context  = context;
     _mediator = mediator;
 }
 public UpdateCustomerCommandHandler(IShoppingDataContext context)
 {
     _context = context;
 }
 public GetCustomersListQueryHandler(IShoppingDataContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public GetProductDetailQueryHandler(IShoppingDataContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #8
0
 public UpsertCategoryCommandHandler(IShoppingDataContext context)
 {
     _context = context;
 }
Пример #9
0
 public UpsertEmployeeCommandHandler(IShoppingDataContext context)
 {
     _context = context;
 }
Пример #10
0
 public DeleteCategoryCommandHandler(IShoppingDataContext context)
 {
     _context = context;
 }
Пример #11
0
 public GetCategoriesListQueryHandler(IShoppingDataContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }