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;
 }
示例#2
0
 public VisualNotificationsController(IVisualNotificationClient client)
 {
     _client = client;
 }