Esempio n. 1
0
        public DataTable sp_updt_navesBll(NavesBO nave)
        {
            DataTable dt = new DataTable();

            try
            {
                dt = new NavesDAL().sp_updt_navesDAL(nave);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(dt);
        }
Esempio n. 2
0
        public DataTable sp_sel_navesBLL()
        {
            DataTable dt = new DataTable();

            try
            {
                dt = new NavesDAL().sp_sel_navesDAL();
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(dt);
        }
Esempio n. 3
0
        public DataTable sp_sel_naveIDBLL(string nav_cod)
        {
            DataTable dt = new DataTable();

            try
            {
                dt = new NavesDAL().sp_sel_naveIDDAL(nav_cod);
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(dt);
        }