Beispiel #1
0
 public FinalizeController(IRequestTasks requestTasks, IScreeningTasks screeningTasks, IRequestPersonTasks requestPersonTasks, IEmailTasks emailTasks)
 {
     this.requestTasks       = requestTasks;
     this.screeningTasks     = screeningTasks;
     this.requestPersonTasks = requestPersonTasks;
     this.emailTasks         = emailTasks;
 }
 public OperationsController(IOrganizationTasks orgTasks, IAuditTasks auditTasks, IUserTasks userTasks, IScreeningTasks screeningTasks)
 {
     this.orgTasks       = orgTasks;
     this.auditTasks     = auditTasks;
     this.userTasks      = userTasks;
     this.screeningTasks = screeningTasks;
 }
Beispiel #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;
 }
Beispiel #5
0
 public HomeController(IScreeningTasks screeningTasks,
                       IRequestTasks requestTasks,
                       IScreeningStatisticTasks screeningStatisticTasks,
                       IOrganizationTasks orgTasks)
 {
     this.screeningTasks          = screeningTasks;
     this.requestTasks            = requestTasks;
     this.screeningStatisticTasks = screeningStatisticTasks;
     this.orgTasks = orgTasks;
 }
Beispiel #6
0
 public UsersController(IUserTasks userTasks,
                        IRequestTasks requestTasks,
                        IScreeningTasks screeningTasks,
                        ISourcePermissionTasks sourcePermissionTasks)
 {
     this.userTasks             = userTasks;
     this.requestTasks          = requestTasks;
     this.screeningTasks        = screeningTasks;
     this.sourcePermissionTasks = sourcePermissionTasks;
 }
Beispiel #7
0
 public UnitsController(IOrganizationTasks orgTasks,
                        IScreeningTasks screeningTasks,
                        ILuceneTasks luceneTasks,
                        IUserTasks userTasks,
                        ISourceTasks sourceTasks,
                        IAuditTasks auditTasks)
 {
     this.orgTasks       = orgTasks;
     this.screeningTasks = screeningTasks;
     this.luceneTasks    = luceneTasks;
     this.userTasks      = userTasks;
     this.sourceTasks    = sourceTasks;
     this.auditTasks     = auditTasks;
 }
Beispiel #8
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;
 }
Beispiel #9
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;
 }
Beispiel #10
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;
 }
Beispiel #11
0
 public RequestPersonController(IRequestPersonTasks requestPersonTasks, IScreeningTasks screeningTasks, IUserTasks userTasks)
 {
     this.requestPersonTasks = requestPersonTasks;
     this.screeningTasks     = screeningTasks;
     this.userTasks          = userTasks;
 }
Beispiel #12
0
 public ScreeningEntityController(IScreeningTasks screeningTasks, IUserTasks userTasks, ILuceneTasks luceneTasks)
 {
     this.screeningTasks = screeningTasks;
     this.userTasks      = userTasks;
     this.luceneTasks    = luceneTasks;
 }