Ejemplo n.º 1
0
 public static async Task DeleteAllAsync <T>() where T : ISQLiteData, new()
 {
     try
     {
         using (var con = new SQLiteStorage <T>())
         {
             await con.DeleteAllAsync();
         }
     }
     catch (Exception ex)
     {
         await UserDialogs.Instance.AlertAsync(ex.Message);
     }
 }