Ejemplo n.º 1
0
        public DataTable sp_updt_PlanificacionConsoBLL(PlanificacionConsBO planBO)
        {
            DataTable dt = new DataTable();

            try
            {
                dt = new PlanificacionConsDAL().sp_updt_PlanificacionConsoDAL(planBO);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(dt);
        }
Ejemplo n.º 2
0
        public string sp_sel_PlanificacionConsBLL(int cod_term)
        {
            DataTable dt = new DataTable();

            try
            {
                dt = new PlanificacionConsDAL().sp_sel_PlanificacionConsDAL(cod_term);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(JsonConvert.SerializeObject(dt));
        }
Ejemplo n.º 3
0
        public string sp_sel_PlanificacionConsCliente(int rut_cliente)
        {
            DataTable dt = new DataTable();

            try
            {
                dt = new PlanificacionConsDAL().sp_sel_PlanificacionConsCliente(rut_cliente);
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(JsonConvert.SerializeObject(dt));
        }
Ejemplo n.º 4
0
        public string sp_sel_PlanificacionConsoIDDAL(Int64 nro_tarja)
        {
            DataTable dt = new DataTable();

            try
            {
                dt = new PlanificacionConsDAL().sp_sel_PlanificacionConsoIDDAL(nro_tarja);
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(JsonConvert.SerializeObject(dt));
        }