Nettiers.AdventureWorks.Entities.VProductAndDescriptionBase.AcceptChanges C# (CSharp) Method

AcceptChanges() public method

Accepts the changes made to this object by setting each flags to false.
public AcceptChanges ( ) : void
return void
		public virtual void AcceptChanges()
		{
			this._isDeleted = false;
			this._isDirty = false;
			this._isNew = false;
			OnPropertyChanged(string.Empty);
		}