Beispiel #1
0
 public MeController(IDomainManagerService domainManagerService,
                     IOrganizationUserInvitationQueryService organizationUserInvitationQueryService,
                     IProjectUserInvitationQueryService projectUserInvitationQueryService) : base(domainManagerService)
 {
     _domainManagerService = domainManagerService;
     _organizationUserInvitationQueryService = organizationUserInvitationQueryService;
     _projectUserInvitationQueryService      = projectUserInvitationQueryService;
 }
Beispiel #2
0
 public OrganizationUserInvitationController(IDomainManagerService domainManagerService,
                                             IOrganizationUserInvitationService organizationUserInvitationService,
                                             IOrganizationUserInvitationQueryService organizationUserInvitationQueryService) : base(domainManagerService)
 {
     _domainManagerService = domainManagerService;
     _organizationUserInvitationService      = organizationUserInvitationService;
     _organizationUserInvitationQueryService = organizationUserInvitationQueryService;
 }
 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;
 }