Example #1
0
 public FinalizeController(IRequestTasks requestTasks, IScreeningTasks screeningTasks, IRequestPersonTasks requestPersonTasks, IEmailTasks emailTasks)
 {
     this.requestTasks       = requestTasks;
     this.screeningTasks     = screeningTasks;
     this.requestPersonTasks = requestPersonTasks;
     this.emailTasks         = emailTasks;
 }
Example #2
0
 public ValidateController(IRequestTasks requestTasks, IUserTasks userTasks, IRequestPersonTasks requestPersonTasks, IEmailTasks emailTasks)
 {
     this.requestTasks       = requestTasks;
     this.userTasks          = userTasks;
     this.requestPersonTasks = requestPersonTasks;
     this.emailTasks         = emailTasks;
 }
Example #3
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;
 }
 public ScreeningStatisticTasks(IScreeningCountsQuery screeningCountsQuery,
                                INHibernateRepository <ScreeningRequestPersonFinalDecision> srpfdRepo,
                                IScreeningTasks screeningTasks,
                                IRequestPersonTasks requestPersonTasks)
 {
     this.screeningCountsQuery = screeningCountsQuery;
     this.srpfdRepo            = srpfdRepo;
     this.screeningTasks       = screeningTasks;
     this.requestPersonTasks   = requestPersonTasks;
 }
Example #5
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;
 }
Example #6
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;
 }
Example #7
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;
 }
Example #8
0
 public RequestPersonController(IRequestPersonTasks requestPersonTasks, IScreeningTasks screeningTasks, IUserTasks userTasks)
 {
     this.requestPersonTasks = requestPersonTasks;
     this.screeningTasks     = screeningTasks;
     this.userTasks          = userTasks;
 }
Example #9
0
 public PdfExportRequestForInitiatorService(IRequestPersonTasks requestPersonTasks)
 {
     this.requestPersonTasks = requestPersonTasks;
 }