コード例 #1
0
 public Handler(IWebChatContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #2
0
 public Handler(IWebChatContext context)
 {
     _context = context;
 }
コード例 #3
0
 public Handler(IWebChatContext context, IMapper mapper, IIdentityService identityService)
 {
     _context         = context;
     _mapper          = mapper;
     _identityService = identityService;
 }
コード例 #4
0
ファイル: CreateCommand.cs プロジェクト: liannoi/web-chat
 public Handler(IWebChatContext context, IMediator mediator)
 {
     _context  = context;
     _mediator = mediator;
 }
コード例 #5
0
 public WebChatData(IWebChatContext context)
 {
     this.context          = context;
     this.dataRepositories = new Dictionary <Type, object>();
 }