public void LlenarServicio()
        {
            DBUtil db = new DBUtil();

            G_SERVICIOS.DataSource = db.consultar("select * from CTZ_LOG_COTIZACIONES_SERVICIOS where id_cotizacion_servicio_log = -1");
            G_SERVICIOS.DataBind();
        }
        public void COMPLETAR_DETALLE(int id, string fecha, string correo, string nombre)
        {
            DBUtil    db = new DBUtil();
            DataTable dt = new DataTable();

            ctz_log_cotizacionEntity ctz = new ctz_log_cotizacionEntity();

            ctz.id_cotizacion_log = id;
            if (ctz_log_cotizacionBO.encontrar(ref ctz) == "OK")
            {
                T_ID.Text      = ctz.id_cotizacion.ToString();
                T_CLIENTE.Text = nombre;
                T_FECHA.Text   = fecha;
                T_CORREO.Text  = correo;
                LlenarDetalle(id);
                G_SERVICIOS.DataSource = ctz_log_cotizaciones_serviciosBO.GetAll(" where id_cotizacion_log = " + id);
                G_SERVICIOS.DataBind();
                CalcularTotales(id);
            }
        }