public DeleteOrderCommandHandler(INorthlandDbContext context)
 {
     _context = context;
 }
Beispiel #2
0
 public GetUserListQueryHandler(INorthlandDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public UpdateSupplierCommandHandler(INorthlandDbContext context)
 {
     _context = context;
 }
 public CreateProductCommandHandler(INorthlandDbContext context)
 {
     _context = context;
 }
 public CreateOrderItemCommandHandler(INorthlandDbContext context)
 {
     _context = context;
 }
 public DeleteUserCommandHandler(INorthlandDbContext context, IIdentityService identity, ICurrentUserService currentUser)
 {
     _context     = context;
     _identity    = identity;
     _currentUser = currentUser;
 }
Beispiel #7
0
 public LoginUserQueryHandler(INorthlandDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public CreateUserCommandHandler(INorthlandDbContext context)
 {
     _context = context;
 }