public Grupo Get(int id) { if (id == 0) { throw new ArgumentException("O id não pode ser zero."); } return(repository.Select(id)); }