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(); }
protected override void GetFormSourceData() { _entity = PlantillaExamen.New(); _entity.BeginEdit(); }
protected override void GetFormSourceData(long oid) { _entity = PlantillaExamen.Get(oid); _entity.BeginEdit(); _mf_type = ManagerFormType.MFEdit; }