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

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