public TenantService(
     IAuth0Service auth0Service,
     IEthereumService ethereumService,
     IDrugTransactionService drugTransactionService,
     ITenantRepository tenantRepository,
     IOptions <EthereumSettings> options)
 {
     this.auth0Service           = auth0Service;
     this.ethereumService        = ethereumService;
     this.drugTransactionService = drugTransactionService;
     this.tenantRepository       = tenantRepository;
     TenantAbi = options.Value.TenantAbi;
 }
 public DrugTransactionsController(IDrugTransactionService drugTransactionService)
 {
     this.drugTransactionService = drugTransactionService;
 }