Beispiel #1
0
 private void HandleStatusChanged(object sender, TroubleshooterStoreEntryEventArgs e)
 {
     _updateHubContext.Clients.User(e.UserId).UpdateTroubleshootingStatus(e.Status).Wait();
 }
        private void HandleStatusChanged(object sender, TroubleshootingStatusEventArgs e)
        {
            var args = new TroubleshooterStoreEntryEventArgs(UserId, e.Status);

            StatusChanged?.Invoke(this, args);
        }