Example #1
0
 public List<Tupa> ListarTupa(int codigoTramite)
 {
     try
     {
         var lista = new TramiteBl().ObtenerTupa(codigoTramite);
         return lista;
     }
     catch (Exception ex)
     {
         throw new FaultException(ex.Message);
     }
 }
Example #2
0
 public List<Tramite> ListarTramites()
 {
     try
     {
         var lista = new TramiteBl().Obtener();
         return lista;
     }
     catch (Exception ex)
     {
         throw new FaultException(ex.Message);
     }
 }