Example #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);
         }
     }
 }
Example #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);
 }