Exemple #1
0
 /// <summary>
 /// retorna lista de todas las patentes
 /// </summary>
 /// <returns>List patente</returns>
 public static List <Entities.UFP.Patente> GetAllAdapted()
 {
     try
     {
         return(PatenteFacade.GetAllAdapted());
     }
     catch (Exception ex)
     {
         //GestorErrores.Execute(ex);
         throw;
     }
 }
Exemple #2
0
        public static List <Patente> GetAllAdapted()
        {
            List <Patente> var;

            try
            {
                var = PatenteFacade.GetAllAdapted();
            }
            catch (ExceptionBLL bllex)
            {
                throw new ExceptionBLL(bllex, bllex.Message);
            }
            return(var);
        }