public IHttpActionResult Delete(int id) { ProjectBAL obj = new ProjectBAL(); obj.DeleteProject(id); return(Ok("Record is deleted")); }