public SubredditCommandHandler(UltimateRedditBotDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemplo n.º 2
0
 public UserQueryHandler(UltimateRedditBotDbContext context, IMapper mapper, IMediator mediator) : base(context, mapper)
 {
     _mediator = mediator;
 }
 public GuildAdminCommandHandler(UltimateRedditBotDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemplo n.º 4
0
 public GuildQueryHandler(UltimateRedditBotDbContext context, IMapper mapper, IMediator mediator)
 {
     _context  = context;
     _mapper   = mapper;
     _mediator = mediator;
 }
Exemplo n.º 5
0
 public PostHistoryComandHandler(UltimateRedditBotDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public SubscriptionsQueryHandler(UltimateRedditBotDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemplo n.º 7
0
 public FeatureNameQueryHandler(UltimateRedditBotDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemplo n.º 8
0
 public GuildCommandHandler(UltimateRedditBotDbContext context, IMapper mapper, LimitSettings limitSettings)
     : base(context, mapper)
 {
     _limitSettings = limitSettings;
 }
 public BaseQueryHandler(UltimateRedditBotDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 10
0
 public SubscriptionsCommandHandler(UltimateRedditBotDbContext context, IMapper mapper, IMediator mediator) : base(context, mapper)
 {
     _mediator = mediator;
 }
Exemplo n.º 11
0
 public PlaylistQueryHandler(UltimateRedditBotDbContext context, IMapper mapper) : base(context, mapper)
 {
 }