public string DeleteProject(int id) { if (!projectService.Delete(id)) { return("Project is not deleted"); } return("Project is deleted"); }