public CryptographyController(ISymmetricCryptographyService cryptoservice,
                               IRSACryptographyService rsaCryptoService,
                               IObjectService objectService,
                               IServiceProvider provider,
                               ILogger <CryptographyController> logger) : base(provider)
 {
     this.cryptoservice    = cryptoservice;
     this.objectService    = objectService;
     this.rsaCryptoService = rsaCryptoService;
     this.logger           = logger;
 }
 public LicenseController(IObjectService objectService,
                          IRSACryptographyService cryptographysvc,
                          ISymmetricCryptographyService symmetricCryptoService,
                          IFileStorageService storageService,
                          IConfiguration configuration,
                          ILogger <LicenseController> logger,
                          IServiceProvider provider) : base(provider)
 {
     this.objectService          = objectService;
     this.cryptoGraphysvc        = cryptographysvc;
     this.symmetricCryptoService = symmetricCryptoService;
     this.logger         = logger;
     this.storageService = storageService;
     this.configuration  = configuration;
 }