コード例 #1
0
        protected override void ResumenAction()
        {
            ResumenActionForm form = new ResumenActionForm();

            form.SetSourceData(Entity, _modulo, _preguntas_modulo);
            form.ShowDialog();
        }
コード例 #2
0
        protected override void ResumenAction()
        {
            ResumenActionForm form = new ResumenActionForm();
            string            memo = string.Empty;

            if (_entity.MemoPreguntas != string.Empty)
            {
                memo = _entity.MemoPreguntas.Substring(0, _entity.MemoPreguntas.Length - 1);
            }
            PreguntaList preguntas = PreguntaList.GetPreguntasByList(memo);

            form.SetSourceData(EntityInfo, _modulo, preguntas);
            form.ShowDialog();
        }