コード例 #1
0
 public GetRoomDetailHandler(IAngeDbContext context)
 {
     _context = context;
 }
コード例 #2
0
ファイル: CreateUserCommand.cs プロジェクト: v4rden/Ange
 public CreateUserCommandHandler(IAngeDbContext context, IMediator mediator)
 {
     _context  = context;
     _mediator = mediator;
 }
コード例 #3
0
ファイル: GetUserDetailHandler.cs プロジェクト: v4rden/Ange
 public GetUserDetailHandler(IAngeDbContext context)
 {
     _context = context;
 }
コード例 #4
0
 public Handler(IAngeDbContext context, IMediator mediator)
 {
     _context  = context;
     _mediator = mediator;
 }
コード例 #5
0
 public GetChatMessageDetailHandler(IAngeDbContext context)
 {
     _context = context;
 }
コード例 #6
0
 public CreateChatMessageCommandHandler(IAngeDbContext context, IMediator mediator)
 {
     _context  = context;
     _mediator = mediator;
 }
コード例 #7
0
ファイル: DeleteUserCommand.cs プロジェクト: v4rden/Ange
 public DeleteCustomerCommandHandler(IAngeDbContext context, IMediator mediator)
 {
     _context  = context;
     _mediator = mediator;
 }
コード例 #8
0
 public GetUserListQueryHandler(IAngeDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #9
0
 public GetChatMessageListQueryHandler(IAngeDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }