Esempio n. 1
0
        public DataTable sp_updt_gruasBLL(GruasDescBO gruas)
        {
            DataTable dt = new DataTable();

            try
            {
                dt = new GruasDescDAL().sp_updt_gruasDAL(gruas);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(dt);
        }
Esempio n. 2
0
        public DataTable sp_sel_funcionIDBLL(GruasDescBO gruas)
        {
            DataTable dt = new DataTable();

            try
            {
                dt = new GruasDescDAL().sp_sel_gruaIDDAL(gruas);
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(dt);
        }
Esempio n. 3
0
        public string sp_sel_gruaExpoBLL(Int64 nroTarja)
        {
            DataTable dt = new DataTable();

            try
            {
                dt = new GruasDescDAL().sp_sel_gruaExpoDAL(nroTarja);
            }
            catch (Exception ex)
            {
                throw ex;
            }

            string grua = dt.Rows[0].ItemArray[0].ToString();

            return(grua);
        }