Exemplo n.º 1
0
 public IdentifyOrganisationsWithExceededQuotasTask(IAppSession session,
                                                    IGetOrganisationStatisticsQuery getOrganisationStatisticsQuery,
                                                    IGetAvailablePaymentPlansQuery getAvailablePaymentPlansQuery)
 {
     _session = session;
     _getOrganisationStatisticsQuery = getOrganisationStatisticsQuery;
     _getAvailablePaymentPlansQuery  = getAvailablePaymentPlansQuery;
 }
Exemplo n.º 2
0
 public ChangeSubscriptionCommand(ErrorditeConfiguration configuration,
                                  IGetOrganisationStatisticsQuery getOrganisationStatisticsQuery,
                                  IGetAvailablePaymentPlansQuery getAvailablePaymentPlansQuery)
 {
     _configuration = configuration;
     _getOrganisationStatisticsQuery = getOrganisationStatisticsQuery;
     _getAvailablePaymentPlansQuery  = getAvailablePaymentPlansQuery;
 }
Exemplo n.º 3
0
 public DashboardController(IGetOrganisationStatisticsQuery getOrganisationStatisticsQuery,
                            IGetApplicationIssuesQuery getApplicationIssuesQuery,
                            IGetDashboardReportQuery getDashboardReportQuery,
                            IGetIssueQuery getIssueQuery,
                            IGetActivityLogQuery getActivityLogQuery,
                            IGetApplicationErrorsQuery getApplicationErrorsQuery,
                            IMostRecurringIssuesForDateQuery getMostRecurringIssuesForDateQuery)
 {
     _getOrganisationStatisticsQuery = getOrganisationStatisticsQuery;
     _getApplicationIssuesQuery      = getApplicationIssuesQuery;
     _getDashboardReportQuery        = getDashboardReportQuery;
     _getIssueQuery                      = getIssueQuery;
     _getActivityLogQuery                = getActivityLogQuery;
     _getApplicationErrorsQuery          = getApplicationErrorsQuery;
     _getMostRecurringIssuesForDateQuery = getMostRecurringIssuesForDateQuery;
 }
Exemplo n.º 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;
 }