public static async Task <bool> SyncTableAsync()
 {
     Debug.WriteLine("DeviceTable.SyncTableAsync - Syncing Table");
     if (MobileService.Client.CurrentUser != null)
     {
         if (await LocalStore.PushLocalStoreAsync())
         {
             return(await PullTableAsync());
         }
         return(false);
     }
     else
     {
         Debug.WriteLine("DeviceTable.SyncTableAsync - User not set. Table not synced");
         return(false);
     }
 }