protected override bool ViewRow()
        {
            var f = new ProductEditForm();

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

            f.BeginCreate();
            return(f.ShowDialog() == DialogResult.OK);
        }