public Ticket Get(int id) { Ticket item = repositorio.Get(id); if (item == null) { return(null); } return(item); }