コード例 #1
0
 public OperationsController(IOrganizationTasks orgTasks, IAuditTasks auditTasks, IUserTasks userTasks, IScreeningTasks screeningTasks)
 {
     this.orgTasks       = orgTasks;
     this.auditTasks     = auditTasks;
     this.userTasks      = userTasks;
     this.screeningTasks = screeningTasks;
 }
コード例 #2
0
 public UserGroupTask(IUserGroupRepository userGroupRepository,
                      IApplicationTask applicationTask,
                      IAuditTasks auditTasks)
 {
     this.userGroupRepository = userGroupRepository;
     this.applicationTask     = applicationTask;
     this.auditTasks          = auditTasks;
 }
コード例 #3
0
 public CredentialTasks(ICredentialRepository credentialRepository,
                        IUserGroupTask userGroupTask,
                        IApplicationTask applicationTask,
                        IAuditTasks auditTasks)
 {
     this.credentialRepository = credentialRepository;
     this.userGroupTask        = userGroupTask;
     this.applicationTask      = applicationTask;
     this.auditTasks           = auditTasks;
 }
コード例 #4
0
ファイル: UnitsController.cs プロジェクト: ruacol/profiling2
 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;
 }
コード例 #5
0
 public PersonStatisticTasks(IPersonStatisticsQuery personStatisticsQuery,
                             ICountsQuery countsQuery,
                             IEventRevisionsQuery eventRevisionsQuery,
                             IPersonAuditable <Career> auditCareerQuery,
                             IPersonTasks personTasks,
                             IAuditTasks auditTasks)
 {
     this.personStatisticsQuery = personStatisticsQuery;
     this.countsQuery           = countsQuery;
     this.eventRevisionsQuery   = eventRevisionsQuery;
     this.auditCareerQuery      = auditCareerQuery;
     this.personTasks           = personTasks;
     this.auditTasks            = auditTasks;
 }
コード例 #6
0
 public PersonsController(IPersonTasks personTasks,
                          ILocationTasks locationTasks,
                          IWantedTasks wantedTasks,
                          IAuditTasks auditTasks,
                          IUserTasks userTasks,
                          ILuceneTasks luceneTasks,
                          ISourceTasks sourceTasks)
 {
     this.personTasks   = personTasks;
     this.locationTasks = locationTasks;
     this.wantedTasks   = wantedTasks;
     this.auditTasks    = auditTasks;
     this.userTasks     = userTasks;
     this.luceneTasks   = luceneTasks;
     this.sourceTasks   = sourceTasks;
 }
コード例 #7
0
 public RequestPersonTasks(INHibernateRepository <RequestPerson> requestPersonRepository,
                           INHibernateRepository <RequestPersonStatus> requestPersonStatusRepository,
                           INHibernateRepository <RequestPersonHistory> requestPersonHistoryRepository,
                           INHibernateRepository <RequestProposedPerson> proposedRepo,
                           INHibernateRepository <RequestProposedPersonStatus> proposedStatusRepo,
                           INHibernateRepository <RequestProposedPersonHistory> proposedHistoryRepo,
                           INHibernateRepository <RequestUnit> requestUnitRepository,
                           IRequestPersonsQuery requestPersonsQuery,
                           IAuditTasks auditTasks)
 {
     this.requestPersonRepository        = requestPersonRepository;
     this.requestPersonStatusRepository  = requestPersonStatusRepository;
     this.requestPersonHistoryRepository = requestPersonHistoryRepository;
     this.proposedRepo          = proposedRepo;
     this.proposedStatusRepo    = proposedStatusRepo;
     this.proposedHistoryRepo   = proposedHistoryRepo;
     this.requestUnitRepository = requestUnitRepository;
     this.requestPersonsQuery   = requestPersonsQuery;
     this.auditTasks            = auditTasks;
 }
コード例 #8
0
ファイル: EventsController.cs プロジェクト: ruacol/profiling2
 public EventsController(IEventTasks eventTasks,
                         ILocationTasks locationTasks,
                         IPersonTasks personTasks,
                         IUserTasks userTasks,
                         ISuggestionTasks suggestionTasks,
                         IAuditTasks auditTasks,
                         ILuceneTasks luceneTasks,
                         ISourceTasks sourceTasks,
                         IEventMatchingTasks eventMatchingTasks)
 {
     this.eventTasks         = eventTasks;
     this.locationTasks      = locationTasks;
     this.personTasks        = personTasks;
     this.userTasks          = userTasks;
     this.suggestionTasks    = suggestionTasks;
     this.auditTasks         = auditTasks;
     this.luceneTasks        = luceneTasks;
     this.sourceTasks        = sourceTasks;
     this.eventMatchingTasks = eventMatchingTasks;
 }