Exemple #1
0
 public AttachReportImagesCommand(IReportImageService reportImageService,
                                  IReportValidationHub reportValidationHub, IHttpContextReader httpContextReader)
 {
     this.reportImageService  = reportImageService;
     this.reportValidationHub = reportValidationHub;
     this.httpContextReader   = httpContextReader;
 }
 public ArchiveReportCommand(IReportManager reportManager, IReportValidationHub reportValidationHub,
                             IHttpContextReader httpContextReader, INotifier notifier, IHubManager <NotifierHub> hubManager,
                             IMapper mapper)
 {
     this.reportManager       = reportManager;
     this.reportValidationHub = reportValidationHub;
     this.httpContextReader   = httpContextReader;
     this.notifier            = notifier;
     this.hubManager          = hubManager;
     this.mapper = mapper;
 }
 public RemoveReportSubscriberCommand(IReportSubscriberService reportSubscriberService,
                                      IReportValidationHub reportValidationHub, IHttpContextReader httpContextReader, INotifier notifier,
                                      IHubManager <NotifierHub> hubManager, IMapper mapper)
 {
     this.reportSubscriberService = reportSubscriberService;
     this.reportValidationHub     = reportValidationHub;
     this.httpContextReader       = httpContextReader;
     this.notifier   = notifier;
     this.hubManager = hubManager;
     this.mapper     = mapper;
 }
 public AddReportCommentCommand(IReportCommentService reportCommentService,
                                IReportValidationHub reportValidationHub, IReportManager reportManager, INotifier notifier,
                                IHubManager <NotifierHub> hubManager, IMapper mapper)
 {
     this.reportCommentService = reportCommentService;
     this.reportValidationHub  = reportValidationHub;
     this.reportManager        = reportManager;
     this.notifier             = notifier;
     this.hubManager           = hubManager;
     this.mapper = mapper;
 }
Exemple #5
0
 public AcceptReportAssignmentCommand(IReportManager reportManager, IReportValidationHub reportValidationHub)
 {
     this.reportManager       = reportManager;
     this.reportValidationHub = reportValidationHub;
 }
Exemple #6
0
 public TogglePrivacyReportCommand(IReportManager reportManager, IReportValidationHub reportValidationHub)
 {
     this.reportManager       = reportManager;
     this.reportValidationHub = reportValidationHub;
 }