예제 #1
0
 public Concurso Get(long id)
 {
     if (id <= 0)
     {
         throw new IdentifierUndefinedException();
     }
     return(_repository.Get(id));
 }