Example #1
0
 public ProjectFeatureServiceEventController(IDomainManagerService domainManagerService,
                                             IProjectFeatureServiceEventService projectFeatureServiceEventService,
                                             IProjectFeatureServiceEventQueryService projectFeatureServiceEventQueryService) : base(domainManagerService)
 {
     _domainManagerService = domainManagerService;
     _projectFeatureServiceEventService      = projectFeatureServiceEventService;
     _projectFeatureServiceEventQueryService = projectFeatureServiceEventQueryService;
 }
 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;
 }