Example #1
0
 public async Task <bool> Delete(int id)
 {
     try
     {
         return(await StoreDB.RemoveContactAsync(id));
     }
     catch (Exception)
     {
         return(false);
     }
 }