示例#1
0
 public EmailTasks(IRequestTasks requestTasks, IEmailService emailService, IUserTasks userTasks, IFeedingSourceTasks feedingSourceTasks)
 {
     this.requestTasks       = requestTasks;
     this.emailService       = emailService;
     this.userTasks          = userTasks;
     this.feedingSourceTasks = feedingSourceTasks;
 }
示例#2
0
 public FinalizeController(IRequestTasks requestTasks, IScreeningTasks screeningTasks, IRequestPersonTasks requestPersonTasks, IEmailTasks emailTasks)
 {
     this.requestTasks       = requestTasks;
     this.screeningTasks     = screeningTasks;
     this.requestPersonTasks = requestPersonTasks;
     this.emailTasks         = emailTasks;
 }
示例#3
0
 public ValidateController(IRequestTasks requestTasks, IUserTasks userTasks, IRequestPersonTasks requestPersonTasks, IEmailTasks emailTasks)
 {
     this.requestTasks       = requestTasks;
     this.userTasks          = userTasks;
     this.requestPersonTasks = requestPersonTasks;
     this.emailTasks         = emailTasks;
 }
示例#4
0
 public ConsolidateController(IRequestTasks requestTasks, IRequestPersonTasks requestPersonTasks, IScreeningTasks screeningTasks, IEmailTasks emailTasks, IUserTasks userTasks)
 {
     this.requestTasks       = requestTasks;
     this.requestPersonTasks = requestPersonTasks;
     this.screeningTasks     = screeningTasks;
     this.emailTasks         = emailTasks;
     this.userTasks          = userTasks;
 }
示例#5
0
 public HomeController(IScreeningTasks screeningTasks,
                       IRequestTasks requestTasks,
                       IScreeningStatisticTasks screeningStatisticTasks,
                       IOrganizationTasks orgTasks)
 {
     this.screeningTasks          = screeningTasks;
     this.requestTasks            = requestTasks;
     this.screeningStatisticTasks = screeningStatisticTasks;
     this.orgTasks = orgTasks;
 }
示例#6
0
 public UsersController(IUserTasks userTasks,
                        IRequestTasks requestTasks,
                        IScreeningTasks screeningTasks,
                        ISourcePermissionTasks sourcePermissionTasks)
 {
     this.userTasks             = userTasks;
     this.requestTasks          = requestTasks;
     this.screeningTasks        = screeningTasks;
     this.sourcePermissionTasks = sourcePermissionTasks;
 }
示例#7
0
 public InputsController(IUserTasks userTasks,
                         IRequestTasks requestTasks,
                         IRequestPersonTasks requestPersonTasks,
                         IScreeningTasks screeningTasks,
                         IEmailTasks emailTasks,
                         IPdfExportRequestForConditionalityParticipantService pdfExportService)
 {
     this.userTasks          = userTasks;
     this.requestTasks       = requestTasks;
     this.requestPersonTasks = requestPersonTasks;
     this.screeningTasks     = screeningTasks;
     this.emailTasks         = emailTasks;
     this.pdfExportService   = pdfExportService;
 }
示例#8
0
 public RequestsController(IRequestTasks requestTasks,
                           IUserTasks userTasks,
                           IRequestPersonTasks requestPersonTasks,
                           IPdfExportRequestForInitiatorService pdfExportService,
                           IScreeningTasks screeningTasks,
                           ILuceneTasks luceneTasks)
 {
     this.requestTasks       = requestTasks;
     this.userTasks          = userTasks;
     this.requestPersonTasks = requestPersonTasks;
     this.pdfExportService   = pdfExportService;
     this.screeningTasks     = screeningTasks;
     this.luceneTasks        = luceneTasks;
 }
示例#9
0
 public BackgroundTasks(ILuceneTasks luceneTasks,
                        IOrganizationTasks orgTasks,
                        IPersonTasks personTasks,
                        IEventTasks eventTasks,
                        IRequestTasks requestTasks,
                        IScreeningTasks screeningTasks,
                        ISourceTasks sourceTasks)
 {
     this.luceneTasks    = luceneTasks;
     this.orgTasks       = orgTasks;
     this.personTasks    = personTasks;
     this.eventTasks     = eventTasks;
     this.requestTasks   = requestTasks;
     this.screeningTasks = screeningTasks;
     this.sourceTasks    = sourceTasks;
 }
示例#10
0
 public InitiateController(IRequestTasks requestTasks,
                           IUserTasks userTasks,
                           IPersonTasks personTasks,
                           IRequestPersonTasks requestPersonTasks,
                           IEmailTasks emailTasks,
                           ILuceneTasks luceneTasks,
                           IOrganizationTasks orgTasks)
 {
     this.requestTasks       = requestTasks;
     this.userTasks          = userTasks;
     this.personTasks        = personTasks;
     this.requestPersonTasks = requestPersonTasks;
     this.emailTasks         = emailTasks;
     this.luceneTasks        = luceneTasks;
     this.orgTasks           = orgTasks;
 }
示例#11
0
 public AttachmentsController(IRequestTasks requestTasks, IRequestAttachmentTasks requestAttachmentTasks)
 {
     this.requestTasks           = requestTasks;
     this.requestAttachmentTasks = requestAttachmentTasks;
 }
示例#12
0
 public ActiveScreeningsController(IPersonTasks personTasks, IRequestTasks requestTasks, IUserTasks userTasks)
 {
     this.personTasks  = personTasks;
     this.requestTasks = requestTasks;
     this.userTasks    = userTasks;
 }
 public RequestEntityController(IRequestTasks requestTasks, IUserTasks userTasks)
 {
     this.requestTasks = requestTasks;
     this.userTasks    = userTasks;
 }