public PlantillaDesarrolloEditForm(PlantillaExamen source)
            : base()
        {
            InitializeComponent();

            _entity = source.Clone();
            _entity.BeginEdit();
            SetFormData();
            _mf_type  = ManagerFormType.MFEdit;
            this.Text = Resources.Labels.PLANTILLA_EXAMEN_EDIT_TITLE;
        }
 protected override void GetFormSourceData(long oid)
 {
     _entity = PlantillaExamen.Get(oid, false);
     _entity.BeginEdit();
 }
예제 #3
0
 protected override void GetFormSourceData()
 {
     _entity = PlantillaExamen.New();
     _entity.BeginEdit();
 }
예제 #4
0
 protected override void GetFormSourceData(long oid)
 {
     _entity = PlantillaExamen.Get(oid);
     _entity.BeginEdit();
     _mf_type = ManagerFormType.MFEdit;
 }