Beispiel #1
0
 private bool DeleteProfile(string pn)
 {
     return(ProjectDao.Delete(pn));
 }
Beispiel #2
0
 public long Delete(int _Id)
 {
     return(projectDao.Delete(_Id));
 }
Beispiel #3
0
 public bool DeleteProject(int id) => _projects.Delete(id);
Beispiel #4
0
 private async void DeleteButton_Clicked(object sender, EventArgs e)
 {
     dao.Delete();
     await Navigation.PopAsync();
 }