Пример #1
0
 public SchemasController(IDataSchemaService dataSchemaService, IAuthorisationService auth,
                          IConfigurationService configurationService)
     : base(auth)
 {
     _dataSchemaService = dataSchemaService;
     _config            = configurationService;
 }
Пример #2
0
 public SoftwareStatementController(IAuthorisationService auth,
                                    ISoftwareStatementService softwareStatementService,
                                    IDataSchemaService dataSchemaService,
                                    IOrganizationLicenseService organizationLicenseService) : base(auth)
 {
     _softwareStatementService   = softwareStatementService;
     _dataSchemaService          = dataSchemaService;
     _organizationLicenseService = organizationLicenseService;
 }
Пример #3
0
 public SchemasController(IApplicationsService applicationService,
                          IDataSchemaService schemaService) : base(applicationService)
 {
     _schemaService = schemaService;
 }