예제 #1
0
파일: Shift.cs 프로젝트: seanmcpar/AmbuMate
 public static async void Update(Shift shift)
 {
     await App.MobileService.GetTable <Shift>().UpdateAsync(shift);
 }
예제 #2
0
파일: Shift.cs 프로젝트: seanmcpar/AmbuMate
        //public event PropertyChangedEventHandler PropertyChanged;

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