public ActionResult <Task> Get(int id) { try { return(Ok(_LS.GetOne(id))); } catch (System.Exception error) { return(BadRequest(error.Message)); } }