コード例 #1
0
 public DeleteOrderCommandHandler(INorthlandDbContext context)
 {
     _context = context;
 }
コード例 #2
0
 public GetUserListQueryHandler(INorthlandDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #3
0
 public UpdateSupplierCommandHandler(INorthlandDbContext context)
 {
     _context = context;
 }
コード例 #4
0
 public CreateProductCommandHandler(INorthlandDbContext context)
 {
     _context = context;
 }
コード例 #5
0
 public CreateOrderItemCommandHandler(INorthlandDbContext context)
 {
     _context = context;
 }
コード例 #6
0
 public DeleteUserCommandHandler(INorthlandDbContext context, IIdentityService identity, ICurrentUserService currentUser)
 {
     _context     = context;
     _identity    = identity;
     _currentUser = currentUser;
 }
コード例 #7
0
 public LoginUserQueryHandler(INorthlandDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #8
0
 public CreateUserCommandHandler(INorthlandDbContext context)
 {
     _context = context;
 }