public ActionResult <Student> Get(int id) { try { return(Ok(_ss.GetById(id))); } catch (Exception e) { return(BadRequest(e.Message)); } }