Exemple #1
0
 public AttachToNewIssueCommand(IMatchRuleFactoryFactory matchRuleFactoryFactory,
                                ISendNotificationCommand sendNotificationCommand,
                                IReceptionServiceIssueCache receptionServiceIssueCache)
 {
     _matchRuleFactoryFactory    = matchRuleFactoryFactory;
     _sendNotificationCommand    = sendNotificationCommand;
     _receptionServiceIssueCache = receptionServiceIssueCache;
 }
 public ApplicationsController(IAddApplicationCommand addApplicationCommand,
                               IGetApplicationQuery getApplicationQuery,
                               IEditApplicationCommand editApplicationCommand,
                               IDeleteApplicationCommand deleteApplicationCommand,
                               IPagingViewModelGenerator pagingViewModelGenerator,
                               IMatchRuleFactoryFactory matchRuleFactoryFactory)
 {
     _addApplicationCommand    = addApplicationCommand;
     _getApplicationQuery      = getApplicationQuery;
     _editApplicationCommand   = editApplicationCommand;
     _deleteApplicationCommand = deleteApplicationCommand;
     _pagingViewModelGenerator = pagingViewModelGenerator;
     _matchRuleFactoryFactory  = matchRuleFactoryFactory;
 }
Exemple #3
0
 public IssuesController(IPagingViewModelGenerator pagingViewModelGenerator,
                         IGetApplicationIssuesQuery getApplicationIssuesQuery,
                         IMatchRuleFactoryFactory matchRuleFactoryFactory,
                         ErrorditeConfiguration configuration,
                         IAddIssueCommand addIssueCommand,
                         IGetIssueQuery getIssueQuery,
                         IMergeIssuesCommand mergeIssuesCommand,
                         IBatchStatusUpdateCommand batchStatusUpdateCommand,
                         IBatchDeleteIssuesCommand batchDeleteIssuesCommand)
 {
     _pagingViewModelGenerator  = pagingViewModelGenerator;
     _getApplicationIssuesQuery = getApplicationIssuesQuery;
     _matchRuleFactoryFactory   = matchRuleFactoryFactory;
     _configuration             = configuration;
     _addIssueCommand           = addIssueCommand;
     _getIssueQuery             = getIssueQuery;
     _mergeIssuesCommand        = mergeIssuesCommand;
     _batchStatusUpdateCommand  = batchStatusUpdateCommand;
     _batchDeleteIssuesCommand  = batchDeleteIssuesCommand;
 }
Exemple #4
0
 public OrganisationsController(IPagingViewModelGenerator pagingViewModelGenerator,
                                IGetOrganisationsQuery getOrganisationsQuery,
                                IGetUsersQuery getUsersQuery,
                                ISuspendOrganisationCommand suspendOrganisationCommand,
                                IActivateOrganisationCommand activateOrganisationCommand,
                                IMatchRuleFactoryFactory matchRuleFactoryFactory,
                                IGetApplicationsQuery getApplicationsQuery,
                                IDeleteOrganisationCommand deleteOrganisationCommand,
                                IGetOrganisationStatisticsQuery getOrganisationStatisticsQuery)
 {
     _pagingViewModelGenerator       = pagingViewModelGenerator;
     _getOrganisationsQuery          = getOrganisationsQuery;
     _getUsersQuery                  = getUsersQuery;
     _suspendOrganisationCommand     = suspendOrganisationCommand;
     _activateOrganisationCommand    = activateOrganisationCommand;
     _matchRuleFactoryFactory        = matchRuleFactoryFactory;
     _getApplicationsQuery           = getApplicationsQuery;
     _deleteOrganisationCommand      = deleteOrganisationCommand;
     _getOrganisationStatisticsQuery = getOrganisationStatisticsQuery;
 }