Esempio n. 1
0
 public static DataRow Select(System.String IdFamiliaElement)
 {
     try
     {
         return(FamiliaFacade.Select(IdFamiliaElement));
     }
     catch (Exception ex)
     {
         //GestorErrores.Execute(ex);
         throw;
     }
 }
Esempio n. 2
0
        public static DataRow Select(string IdFamiliaElement)
        {
            DataRow var;

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