public IActionResult Get(int id) { var r = _repositiry.GetTicket(id); if (r == null) { return(NotFound()); } return(new ObjectResult(r)); }