public ClearRecycleBin(IApplicationLogger logger, IAuditService auditService, ICustomApiContextService customApiContextService, ICustomApiConfig customApiConfig)
 {
     this.logger                  = logger;
     this.auditService            = auditService;
     this.customApiContextService = customApiContextService;
     this.customApiConfig         = customApiConfig;
 }
 public CustomApiContextService(
     IApplicationLogger applicationLogger,
     ITokenClient tokenClient,
     ICustomApiConfig customApiConfig,
     IHttpClientService httpClientService)
 {
     this.applicationLogger = applicationLogger;
     this.tokenClient       = tokenClient;
     this.customApiConfig   = customApiConfig;
     this.httpClientService = httpClientService;
 }