Esempio n. 1
0
 void CorrectOrdersAndNotifications(IAsyncResult result)
 {
     if (result.IsCompleted)
     {
         // UpdateOrdersDelegate.BeginInvoke(null, null);
         UpdateNotificationsDelegate.Invoke();
         CheckNotificationsDelegate.Invoke();
     }
 }
Esempio n. 2
0
 /// <summary>
 /// Запустить обновление рдеров
 /// </summary>
 public void UpdateOrdersAndNotifications()
 {
     //UpdateOrdersDelegate.Invoke();
     UpdateNotificationsDelegate.BeginInvoke(null, null);
 }