Ejemplo n.º 1
0
 public StateReportQueryService(IReportingModuleSession customerReportingInterfaceSession, IUserContext userContext, IExcelReportFactory excelReportFactory, IOrganizationUserQueryService organizationUserQueryService)
 {
     _userContext                  = userContext;
     _excelReportFactory           = excelReportFactory;
     _session                      = customerReportingInterfaceSession.Session;
     _organizationUserQueryService = organizationUserQueryService;
 }
Ejemplo n.º 2
0
 public OrganizationInvitationController(IDomainManagerService domainManagerService,
                                         IOrganizationUserService organizationUserService,
                                         IOrganizationUserQueryService organizationUserQueryService) : base(domainManagerService)
 {
     _domainManagerService         = domainManagerService;
     _organizationUserService      = organizationUserService;
     _organizationUserQueryService = organizationUserQueryService;
 }
 public GatewayController(IDomainManagerService domainManagerService,
                          IOrganizationQueryService organizationQueryService,
                          IProjectQueryService projectQueryService,
                          IOrganizationCMSQueryService organizationCMSQueryService,
                          IOrganizationCPSQueryService organizationCPSQueryService,
                          IOrganizationUserQueryService organizationUserQueryService,
                          IProjectActivityQueryService projectActivityQueryService,
                          IProjectEnvironmentQueryService projectEnvironmentQueryService,
                          IProjectFeatureQueryService projectFeatureQueryService,
                          IProjectServiceQueryService projectServiceQueryService,
                          IProjectUserQueryService projectUserQueryService,
                          IProjectUserInvitationQueryService projectUserInvitationQueryService,
                          IOrganizationUserInvitationQueryService organizationUserInvitationQueryService,
                          IProjectServiceEventQueryService projectServiceEventQueryService,
                          IProjectServiceEnvironmentQueryService projectServiceEnvironmentQueryService,
                          IProjectServiceActivityQueryService projectServiceActivityQueryService,
                          IProjectServiceCloudQueryService projectServiceCloudQueryService,
                          IProjectFeatureServiceActivityQueryService projectFeatureServiceActivityQueryService,
                          IProjectFeatureServiceCloudQueryService projectFeatureServiceCloudQueryService,
                          IProjectFeatureServiceQueryService projectFeatureServiceQueryService,
                          IProjectFeatureServiceEventQueryService projectFeatureServiceEventQueryService,
                          IProjectFeatureServiceEnvironmentQueryService projectFeatureServiceEnvironmentQueryService
                          ) : base(domainManagerService)
 {
     this._organizationQueryService                     = organizationQueryService;
     this._projectQueryService                          = projectQueryService;
     this._organizationCMSQueryService                  = organizationCMSQueryService;
     this._organizationCPSQueryService                  = organizationCPSQueryService;
     this._organizationUserQueryService                 = organizationUserQueryService;
     this._projectActivityQueryService                  = projectActivityQueryService;
     this._projectEnvironmentQueryService               = projectEnvironmentQueryService;
     this._projectFeatureQueryService                   = projectFeatureQueryService;
     this._projectServiceQueryService                   = projectServiceQueryService;
     this._projectUserQueryService                      = projectUserQueryService;
     this._projectUserInvitationQueryService            = projectUserInvitationQueryService;
     this._organizationUserInvitationQueryService       = organizationUserInvitationQueryService;
     this._projectServiceEventQueryService              = projectServiceEventQueryService;
     this._projectServiceEnvironmentQueryService        = projectServiceEnvironmentQueryService;
     this._projectServiceActivityQueryService           = projectServiceActivityQueryService;
     this._projectServiceCloudQueryService              = projectServiceCloudQueryService;
     this._projectFeatureServiceActivityQueryService    = projectFeatureServiceActivityQueryService;
     this._projectFeatureServiceCloudQueryService       = projectFeatureServiceCloudQueryService;
     this._projectFeatureServiceEventQueryService       = projectFeatureServiceEventQueryService;
     this._projectFeatureServiceQueryService            = projectFeatureServiceQueryService;
     this._projectFeatureServiceEnvironmentQueryService = projectFeatureServiceEnvironmentQueryService;
 }
 public ReportingModuleJwtSecurityTokenHandler(IOrganizationUserQueryService organizationUserQueryService, IOrganizationQueryService organizationQueryService)
 {
     _organizationUserQueryService = organizationUserQueryService;
     _organizationQueryService     = organizationQueryService;
 }
Ejemplo n.º 5
0
 public LoginController(IOrganizationUserQueryService organizationUserQueryService)
 {
     _organizationUserQueryService = organizationUserQueryService;
 }
 public OrganizationUserController(Func <IEndpointInstance> endpointInstance, IOrganizationUserQueryService queryService, IUserContext userContext)
 {
     _endpointInstance = endpointInstance;
     _queryService     = queryService;
     _userContext      = userContext;
 }