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

            return(repository.Select(id));
        }