示例#1
0
 public SoftwareStatementController(IAuthorisationService auth,
                                    ISoftwareStatementService softwareStatementService,
                                    IDataSchemaService dataSchemaService,
                                    IOrganizationLicenseService organizationLicenseService) : base(auth)
 {
     _softwareStatementService   = softwareStatementService;
     _dataSchemaService          = dataSchemaService;
     _organizationLicenseService = organizationLicenseService;
 }
 public LicenseAgreementsController(IApplicationsService apps,
                                    ISoftwareStatementService softwareStatementService)
     : base(apps)
 {
     _softwareStatementService = softwareStatementService;
 }
 public SoftwareStatementController(ISoftwareStatementService softwareStatementService,
                                    IApplicationsService apps)
     : base(apps)
 {
     _softwareStatementService = softwareStatementService;
 }