예제 #1
0
 public Categoria RecuperarPorId(int id)
 {
     try
     {
         return(_repositorioCategoria.RecuperarPorId(id));
     }
     catch (Exception ex)
     {
         throw new Exception(String.Format("Erro ao RecuperarPorId: {0}", ex.Message));
     }
 }