Exemple #1
0
 public SourceAttachController(ISourceTasks sourceTasks, IEventTasks eventTasks, IPersonTasks personTasks, ISourceAttachmentTasks sourceAttachmentTasks)
 {
     this.sourceTasks           = sourceTasks;
     this.eventTasks            = eventTasks;
     this.personTasks           = personTasks;
     this.sourceAttachmentTasks = sourceAttachmentTasks;
 }
Exemple #2
0
 public PersonResponsibilitiesController(IEventTasks eventTasks, IPersonTasks personTasks, IResponsibilityTasks responsibilityTasks, ISourceTasks sourceTasks)
 {
     this.eventTasks          = eventTasks;
     this.personTasks         = personTasks;
     this.responsibilityTasks = responsibilityTasks;
     this.sourceTasks         = sourceTasks;
 }
Exemple #3
0
 public CareerTasks(INHibernateRepository <Career> careerRepository, ICommandersQuery commandersQuery, ILuceneTasks luceneTasks, IPersonTasks personTasks)
 {
     this.careerRepository = careerRepository;
     this.commandersQuery  = commandersQuery;
     this.luceneTasks      = luceneTasks;
     this.personTasks      = personTasks;
 }
Exemple #4
0
 public WantedTasks(IPersonTasks personTasks,
                    ICareerTasks careerTasks,
                    IActionTakenTasks actionTasks)
 {
     this.personTasks = personTasks;
     this.careerTasks = careerTasks;
     this.actionTasks = actionTasks;
 }
Exemple #5
0
 public ActionTakenTasks(INHibernateRepository <ActionTakenType> actionTakenTypeRepo,
                         INHibernateRepository <ActionTaken> actionTakenRepo,
                         IActionTakenWantedQuery wantedQuery,
                         IPersonTasks personTasks)
 {
     this.actionTakenTypeRepo = actionTakenTypeRepo;
     this.actionTakenRepo     = actionTakenRepo;
     this.wantedQuery         = wantedQuery;
     this.personTasks         = personTasks;
 }
Exemple #6
0
 public PhotoTasks(INHibernateRepository <Photo> photoRepo,
                   INHibernateRepository <FileType> fileTypeRepo,
                   INHibernateRepository <PersonPhoto> personPhotoRepo,
                   IPersonTasks personTasks)
 {
     this.photoRepo       = photoRepo;
     this.fileTypeRepo    = fileTypeRepo;
     this.personPhotoRepo = personPhotoRepo;
     this.personTasks     = personTasks;
 }
 public CareersController(IPersonTasks personTasks,
                          ICareerTasks careerTasks,
                          IOrganizationTasks organizationTasks,
                          ILocationTasks locationTasks)
 {
     this.personTasks       = personTasks;
     this.careerTasks       = careerTasks;
     this.organizationTasks = organizationTasks;
     this.locationTasks     = locationTasks;
 }
 public ResponsibilityTasks(INHibernateRepository <PersonResponsibility> personResponsibilityRepo,
                            INHibernateRepository <PersonResponsibilityType> personResponsibilityTypeRepo,
                            INHibernateRepository <OrganizationResponsibility> orgResponsibilityRepo,
                            INHibernateRepository <OrganizationResponsibilityType> orgResponsibilityTypeRepo,
                            IPersonTasks personTasks)
 {
     this.personResponsibilityRepo     = personResponsibilityRepo;
     this.personResponsibilityTypeRepo = personResponsibilityTypeRepo;
     this.orgResponsibilityRepo        = orgResponsibilityRepo;
     this.orgResponsibilityTypeRepo    = orgResponsibilityTypeRepo;
     this.personTasks = personTasks;
 }
Exemple #9
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;
 }
Exemple #10
0
 public EventsController(ISourceTasks sourceTasks,
                         IEventTasks eventTasks,
                         IPersonTasks personTasks,
                         IResponsibilityTasks responsibilityTasks,
                         IOrganizationTasks orgTasks,
                         ILocationTasks locationTasks)
 {
     this.sourceTasks         = sourceTasks;
     this.eventTasks          = eventTasks;
     this.personTasks         = personTasks;
     this.responsibilityTasks = responsibilityTasks;
     this.orgTasks            = orgTasks;
     this.locationTasks       = locationTasks;
 }
Exemple #11
0
 public EventMatchingTasks(IEventTasks eventTasks,
                           ILuceneTasks luceneTasks,
                           ISourceAttachmentTasks sourceAttachmentTasks,
                           ILocationTasks locationTasks,
                           IJhroCaseQueries jhroCaseQueries,
                           IPersonTasks personTasks,
                           IOrganizationTasks orgTasks)
 {
     this.eventTasks            = eventTasks;
     this.luceneTasks           = luceneTasks;
     this.sourceAttachmentTasks = sourceAttachmentTasks;
     this.locationTasks         = locationTasks;
     this.jhroCaseQueries       = jhroCaseQueries;
     this.personTasks           = personTasks;
     this.orgTasks = orgTasks;
 }
 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;
 }
Exemple #13
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;
 }
Exemple #14
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;
 }
Exemple #15
0
 public SourceManagementTasks(IObjectSourceDuplicatesQuery objectSourceDuplicatesQuery,
                              ISourceTasks sourceTasks,
                              ISourceAttachmentTasks sourceAttachmentTasks,
                              IPersonTasks personTasks,
                              IEventTasks eventTasks,
                              IOrganizationTasks orgTasks,
                              ISourceQueries sourceQueries,
                              ILuceneTasks luceneTasks)
 {
     this.objectSourceDuplicatesQuery = objectSourceDuplicatesQuery;
     this.sourceTasks           = sourceTasks;
     this.sourceAttachmentTasks = sourceAttachmentTasks;
     this.personTasks           = personTasks;
     this.eventTasks            = eventTasks;
     this.orgTasks      = orgTasks;
     this.sourceQueries = sourceQueries;
     this.luceneTasks   = luceneTasks;
 }
Exemple #16
0
 public AuditTasks(IPersonTasks personTasks,
                   IEventTasks eventTasks,
                   IOrganizationTasks orgTasks,
                   IPersonChangeActivityQuery personChangeActivityQuery,
                   IPersonAuditable <Person> auditPersonQuery,
                   IPersonAuditable <Career> auditCareerQuery,
                   IPersonAuditable <PersonAlias> auditPersonAliasQuery,
                   IPersonAuditable <PersonSource> auditPersonSourceQuery,
                   IPersonAuditable <PersonPhoto> auditPersonPhotoQuery,
                   IPersonAuditable <PersonRelationship> auditPersonRelationshipQuery,
                   IPersonAuditable <ActionTaken> auditActionTakenQuery,
                   IPersonAuditable <PersonResponsibility> auditPersonResponsibilityQuery,
                   IPersonAuditable <PersonRestrictedNote> auditPersonRestrictedNoteQuery,
                   IDeletedProfilesStoredProcQuery oldDeletedProfilesQuery,
                   IAuditedEntityQuery auditedEntityQuery,
                   IModifiedProfilesStoredProcQuery oldModifiedProfilesQuery,
                   IAdminAuditQuery adminAuditQuery,
                   IEventRevisionsQuery eventRevisionsQuery,
                   IUnitRevisionsQuery unitRevisionsQuery,
                   IOperationRevisionsQuery operationRevisionsQuery)
 {
     this.personTasks = personTasks;
     this.eventTasks  = eventTasks;
     this.orgTasks    = orgTasks;
     this.personChangeActivityQuery      = personChangeActivityQuery;
     this.auditPersonQuery               = auditPersonQuery;
     this.auditCareerQuery               = auditCareerQuery;
     this.auditPersonAliasQuery          = auditPersonAliasQuery;
     this.auditPersonSourceQuery         = auditPersonSourceQuery;
     this.auditPersonPhotoQuery          = auditPersonPhotoQuery;
     this.auditPersonRelationshipQuery   = auditPersonRelationshipQuery;
     this.auditActionTakenQuery          = auditActionTakenQuery;
     this.auditPersonResponsibilityQuery = auditPersonResponsibilityQuery;
     this.auditPersonRestrictedNoteQuery = auditPersonRestrictedNoteQuery;
     this.oldDeletedProfilesQuery        = oldDeletedProfilesQuery;
     this.auditedEntityQuery             = auditedEntityQuery;
     this.oldModifiedProfilesQuery       = oldModifiedProfilesQuery;
     this.adminAuditQuery         = adminAuditQuery;
     this.eventRevisionsQuery     = eventRevisionsQuery;
     this.unitRevisionsQuery      = unitRevisionsQuery;
     this.operationRevisionsQuery = operationRevisionsQuery;
 }
Exemple #17
0
 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;
 }
 public SourceAttachmentTasks(INHibernateRepository <PersonSource> personSourceRepo,
                              INHibernateRepository <EventSource> eventSourceRepo,
                              INHibernateRepository <OrganizationSource> orgSourceRepo,
                              INHibernateRepository <UnitSource> unitSourceRepo,
                              INHibernateRepository <OperationSource> operationSourceRepo,
                              INHibernateRepository <AdminSourceSearch> adminSourceSearchRepository,
                              INHibernateRepository <AdminReviewedSource> adminReviewedSourceRepository,
                              ISourceCollectionsQuery sourceCollectionsQuery,
                              IAdminSourceSearchQuery adminSourceSearchQuery,
                              ISourceTasks sourceTasks,
                              IPersonTasks personTasks)
 {
     this.personSourceRepo              = personSourceRepo;
     this.eventSourceRepo               = eventSourceRepo;
     this.orgSourceRepo                 = orgSourceRepo;
     this.unitSourceRepo                = unitSourceRepo;
     this.operationSourceRepo           = operationSourceRepo;
     this.adminSourceSearchRepository   = adminSourceSearchRepository;
     this.adminReviewedSourceRepository = adminReviewedSourceRepository;
     this.sourceCollectionsQuery        = sourceCollectionsQuery;
     this.adminSourceSearchQuery        = adminSourceSearchQuery;
     this.sourceTasks = sourceTasks;
     this.personTasks = personTasks;
 }
Exemple #19
0
 public ActionsTakenController(IEventTasks eventTasks, IActionTakenTasks actionTakenTasks, IPersonTasks personTasks)
 {
     this.eventTasks       = eventTasks;
     this.actionTakenTasks = actionTakenTasks;
     this.personTasks      = personTasks;
 }
Exemple #20
0
 public PersonRelationshipsController(IPersonTasks personTasks)
 {
     this.personTasks = personTasks;
 }
Exemple #21
0
 public PersonController(IPersonTasks personTasks, IMapper mapper)
 {
     _personTasks = personTasks;
     _mapper = mapper;
 }
 public PersonsController(IPersonTasks personTasks, ILuceneTasks luceneTasks)
 {
     this.personTasks = personTasks;
     this.luceneTasks = luceneTasks;
 }
Exemple #23
0
 public ActiveScreeningsController(IPersonTasks personTasks, IRequestTasks requestTasks, IUserTasks userTasks)
 {
     this.personTasks  = personTasks;
     this.requestTasks = requestTasks;
     this.userTasks    = userTasks;
 }
 public PersonSourcesController(IPersonTasks personTasks, ISourceTasks sourceTasks, ISourceAttachmentTasks sourceAttachmentTasks)
 {
     this.personTasks           = personTasks;
     this.sourceTasks           = sourceTasks;
     this.sourceAttachmentTasks = sourceAttachmentTasks;
 }
 public PersonAliasesController(IPersonTasks personTasks)
 {
     this.personTasks = personTasks;
 }
Exemple #26
0
 public PersonPhotosController(IPersonTasks personTasks, IPhotoTasks photoTasks)
 {
     this.personTasks = personTasks;
     this.photoTasks  = photoTasks;
 }
Exemple #27
0
 public PersonRestrictedNotesController(IPersonTasks personTasks)
 {
     this.personTasks = personTasks;
 }
Exemple #28
0
 public EthnicitiesController(IPersonTasks personTasks)
 {
     this.personTasks = personTasks;
 }