Exemplo n.º 1
0
 public OrganizationController(IDomainManagerService domainManagerService,
                               IOrganizationService organizationService,
                               IOrganizationQueryService organizationQueryService) : base(domainManagerService)
 {
     _domainManagerService     = domainManagerService;
     _organizationService      = organizationService;
     _organizationQueryService = organizationQueryService;
 }
 public AllReportQueryService(IReportingModuleSession customerReportingInterfaceSession, IUserContext userContext, IExcelReportFactory excelReportFactory, IOrganizationUserQueryService organizationUserQueryService, IOrganizationQueryService organizationQueryService)
 {
     _userContext                  = userContext;
     _excelReportFactory           = excelReportFactory;
     _session                      = customerReportingInterfaceSession.Session;
     _organizationUserQueryService = organizationUserQueryService;
     _organizationQueryService     = organizationQueryService;
 }
 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;
 }
Exemplo n.º 5
0
 /// <summary>
 /// Constructor for Organizations Controller
 /// </summary>
 /// <param name="orgQueryService"></param>
 /// <param name="orgCmdService"></param>
 public OrganizationsController(IOrganizationQueryService orgQueryService, IOrganizationCommandService orgCmdService)
 {
     _orgQueryService = orgQueryService;
     _orgCmdService   = orgCmdService;
 }
        //private readonly IUserContext _userContext;

        public OrganizationController(Func <IEndpointInstance> endpointInstance, IOrganizationQueryService queryService, IUserContext userContext)
        {
            _endpointInstance = endpointInstance;
            _queryService     = queryService;
            _userContext      = userContext;
        }