public T Get(int id) { if (id == 0) { throw new ArgumentException("The id can't be zero."); } return(_codeRepository.Select(id)); }