public IHttpActionResult DeleteStd(int id) { try { var Deletedstd = stdbl.Deletestd(id); return(Ok(Deletedstd)); } catch { return(BadRequest("ID Is Not Found")); } }