Esempio n. 1
0
 internal static bool UpdateReminder(int userId, Proxy.Reminder reminder)
 {
     return(proxy.UpdateReminder(userId, reminder.Id, reminder));
 }
Esempio n. 2
0
        public void ExecuteReminder(Proxy.Reminder reminder)
        {
            App.ShowNotification(reminder.Name, reminder.Description);

            //throw new NotImplementedException();
        }
Esempio n. 3
0
 internal static int AddReminder(int userId, Proxy.Reminder reminder)
 {
     return(proxy.AddReminder(userId, reminder));
 }