コード例 #1
0
 public LicenseValidationController(IDataContextFactory dataContextFactory, IApplicationIssueUnitOfWork applicationIssueUnitOfWork,
                                    ILoggingService loggingService, ILicenseValidator licenseValidator)
 {
     this.dataContextFactory         = dataContextFactory;
     this.applicationIssueUnitOfWork = applicationIssueUnitOfWork;
     this.loggingService             = loggingService;
     this.licenseValidator           = licenseValidator;
 }
コード例 #2
0
ファイル: LicenseValidator.cs プロジェクト: Natsui31/keyhub
 public LicenseValidator(IDataContextFactory dataContextFactory, ILoggingService loggingService, IApplicationIssueUnitOfWork applicationIssueUnitOfWork)
 {
     this.dataContextFactory = dataContextFactory;
     this.loggingService = loggingService;
     this.applicationIssueUnitOfWork = applicationIssueUnitOfWork;
 }