Example #1
0
        public string sp_sel_marcaMercBLL(Int64 cod_mercancia)
        {
            string marca = string.Empty;

            try
            {
                marca = new MercanciaExpoDAL().sp_sel_marcaMerc(cod_mercancia);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(marca);
        }
Example #2
0
        public DataTable sp_updt_mercExpoBLL(MercanciaExpoBO mercancia)
        {
            DataTable dt = new DataTable();

            try
            {
                dt = new MercanciaExpoDAL().sp_updt_mercExpoDAL(mercancia);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(dt);
        }
Example #3
0
        public string sp_sel_mercExpoBLL(string nroDoc, Int64 nroTarja)
        {
            DataTable dt = new DataTable();

            try
            {
                dt = new MercanciaExpoDAL().sp_sel_mercExpoDAL(nroDoc, nroTarja);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(JsonConvert.SerializeObject(dt));
        }
Example #4
0
        public DataTable sp_sel_mercExpoIDBLL(Int64 cod_mercancia)
        {
            DataTable dt = new DataTable();

            try
            {
                dt = new MercanciaExpoDAL().sp_sel_mercExpoIDDAL(cod_mercancia);
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(dt);
        }