コード例 #1
0
ファイル: PersonasLogic.cs プロジェクト: Net2018-UTN/TP2NET
 public List <Persona> GetByTipo(int tipo)
 {
     try
     {
         return(data.GetByTipo(tipo));
     }
     catch (Exception Ex)
     {
         Exception ExcepcionManejada = new Exception("Error al recuperar lista de personas", Ex);
         throw ExcepcionManejada;
     }
 }