public bool DeleteEmail(int id) { bool res = false; try { db.DeleteEmail(id); res = true; } catch (Exception ex) { RDL.Debug.LogError(ex); } return(res); }