Esempio n. 1
0
 private void GetNotification(IClient c)
 {
     foreach (IClient friend in c.Friends)
     {
         if (db.GotMessage(friend.ID, c.ID))
         {
             c.AddNotification(friend.ID, true);
         }
     }
 }
Esempio n. 2
0
 private void GetNotification(IClient c)
 {
     foreach (IClient friend in c.Friends)
         if (db.GotMessage(friend.ID, c.ID))
             c.AddNotification(friend.ID, true);
 }