예제 #1
0
 public static DataTable SelectAll()
 {
     try
     {
         DataTable dt;
         return(dt = IdiomaDAL.SelectAll());
     }
     catch (ExceptionBLL bllex)
     {
         throw new ExceptionBLL(bllex, bllex.Message);
     }
 }
예제 #2
0
        public static DataRow Select(Int32 IdIdioma)
        {
            DataRow dr;

            try
            {
                return(dr = IdiomaDAL.Select(IdIdioma).Rows[0]);
            }
            catch (ExceptionBLL bllex)
            {
                throw new ExceptionBLL(bllex, bllex.Message);
            }
        }