public FetchArchivedReportsQuery(IReadOnlyReportService reportService, IMapper mapper,
                                  IHttpContextWriter httpContextWriter)
 {
     this.reportService     = reportService;
     this.mapper            = mapper;
     this.httpContextWriter = httpContextWriter;
 }
Exemplo n.º 2
0
 public GetUserPurchasesQuery(IPurchaseService purchaseService, IHttpContextWriter httpContextWriter,
                              IMapper mapper)
 {
     this.purchaseService   = purchaseService;
     this.httpContextWriter = httpContextWriter;
     this.mapper            = mapper;
 }
Exemplo n.º 3
0
 public GetUsersByAdminQuery(IReadOnlyUserService userService, IMapper mapper,
                             IHttpContextWriter httpContextWriter)
 {
     this.userService       = userService;
     this.mapper            = mapper;
     this.httpContextWriter = httpContextWriter;
 }
Exemplo n.º 4
0
 public GetCharactersByAdminQuery(IReadOnlyCharacterService characterService, IMapper mapper,
                                  IHttpContextWriter httpContextWriter)
 {
     this.characterService  = characterService;
     this.mapper            = mapper;
     this.httpContextWriter = httpContextWriter;
 }
 public FetchAllReportsQuery(IReadOnlyReportService reportService,
                             IReportValidationService reportValidationService, IMapper mapper, IHttpContextWriter httpContextWriter)
 {
     this.reportService           = reportService;
     this.reportValidationService = reportValidationService;
     this.mapper            = mapper;
     this.httpContextWriter = httpContextWriter;
 }
Exemplo n.º 6
0
 public GetMessagesThreadQuery(IReadOnlyMessenger messenger, IReadOnlyUserService userService, IMapper mapper,
                               IHttpContextWriter httpContextWriter)
 {
     this.messenger         = messenger;
     this.userService       = userService;
     this.mapper            = mapper;
     this.httpContextWriter = httpContextWriter;
 }
Exemplo n.º 7
0
 public LogReader(IDatabase database, IReadOnlyFilesManager filesManager, IMapper mapper,
                  IHttpContextWriter httpContextWriter, LogKeyWordsDictionary logKeyWordsDictionary)
 {
     this.database              = database;
     this.filesManager          = filesManager;
     this.mapper                = mapper;
     this.httpContextWriter     = httpContextWriter;
     this.logKeyWordsDictionary = logKeyWordsDictionary;
 }
Exemplo n.º 8
0
 public GetOrdersQuery(IReadOnlyOrderService orderService, IHttpContextWriter httpContextWriter, IMapper mapper)
 {
     this.orderService      = orderService;
     this.httpContextWriter = httpContextWriter;
     this.mapper            = mapper;
 }
Exemplo n.º 9
0
 public GetConversationsQuery(IReadOnlyMessenger messenger, IMapper mapper, IHttpContextWriter httpContextWriter)
 {
     this.messenger         = messenger;
     this.mapper            = mapper;
     this.httpContextWriter = httpContextWriter;
 }
Exemplo n.º 10
0
 public GetPostsQuery(IReadOnlyPostService postService, IMapper mapper, IHttpContextWriter httpContextWriter)
 {
     this.postService       = postService;
     this.mapper            = mapper;
     this.httpContextWriter = httpContextWriter;
 }
Exemplo n.º 11
0
 public GetApiLogsQuery(ILogReader logReader, IHttpContextWriter httpContextWriter)
 {
     this.logReader         = logReader;
     this.httpContextWriter = httpContextWriter;
 }
Exemplo n.º 12
0
 public GetLogsQuery(IReadOnlyLogManager logManager, IHttpContextWriter httpContextWriter)
 {
     this.logManager        = logManager;
     this.httpContextWriter = httpContextWriter;
 }