Exemplo n.º 1
0
 public Domain.Students GetById(int id)
 {
     try
     {
         return(_repository.GetById(id));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }