public ServiceMetasController(ITenant tenant, ITranslateClient translateClient, ITokenRefresherWithServiceClient tokenRefresher, IVisualNotificationClient visualNotificationClient, ICustomerMasterClient customerMasterClient, IStatisticsClient StatisticsClient)
 {
     _tenant                   = tenant;
     _translateClient          = translateClient;
     _tokenRefresher           = tokenRefresher;
     _visualNotificationClient = visualNotificationClient;
     _customerMasterClient     = customerMasterClient;
     _StatisticsClient         = StatisticsClient;
 }
 public UsersController(ICustomerMasterClient customerMasterClient, ITranslateClient translateClient)
 {
     _customerMasterClient = customerMasterClient;
     _translateClient      = translateClient;
 }