Exemplo n.º 1
0
 /// <summary>
 /// Lista todas las familias
 /// </summary>
 /// <returns>list familias</returns>
 public static List <Entities.UFP.Familia> GetAllAdapted()
 {
     try
     {
         return(FamiliaFacade.GetAllAdapted());
     }
     catch (Exception ex)
     {
         //GestorErrores.Execute(ex);
         throw;
     }
 }
Exemplo n.º 2
0
        public static List <Familia> GetAllAdapted()
        {
            List <Familia> var;

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