Exemple #1
0
 public static async void Update(Shift shift)
 {
     await App.MobileService.GetTable <Shift>().UpdateAsync(shift);
 }
Exemple #2
0
        //public event PropertyChangedEventHandler PropertyChanged;

        public static async void Insert(Shift shift)
        {
            await App.MobileService.GetTable <Shift>().InsertAsync(shift);
        }