예제 #1
0
 public void AddSchedule(NotificationSchedule notificationSchedule)
 {
     lock (Locker)
     {
         Database.Insert(notificationSchedule);
     }
 }
예제 #2
0
 public void UpdateSchedule(NotificationSchedule notificationSchedule)
 {
     lock (Locker)
     {
         Database.Update(notificationSchedule);
     }
 }