public FinalizeController(IRequestTasks requestTasks, IScreeningTasks screeningTasks, IRequestPersonTasks requestPersonTasks, IEmailTasks emailTasks) { this.requestTasks = requestTasks; this.screeningTasks = screeningTasks; this.requestPersonTasks = requestPersonTasks; this.emailTasks = emailTasks; }
public ValidateController(IRequestTasks requestTasks, IUserTasks userTasks, IRequestPersonTasks requestPersonTasks, IEmailTasks emailTasks) { this.requestTasks = requestTasks; this.userTasks = userTasks; this.requestPersonTasks = requestPersonTasks; this.emailTasks = emailTasks; }
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; }
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; }
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; }
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; }
public RequestPersonController(IRequestPersonTasks requestPersonTasks, IScreeningTasks screeningTasks, IUserTasks userTasks) { this.requestPersonTasks = requestPersonTasks; this.screeningTasks = screeningTasks; this.userTasks = userTasks; }
public PdfExportRequestForInitiatorService(IRequestPersonTasks requestPersonTasks) { this.requestPersonTasks = requestPersonTasks; }