protected override bool ViewRow() { var f = new EmployeeEditForm(); f.BeginView(this._currentItemID); return(f.ShowDialog() == DialogResult.OK); }
protected override bool CreateRow() { var f = new EmployeeEditForm(); f.BeginCreate(); return(f.ShowDialog() == DialogResult.OK); }