Nettiers.AdventureWorks.Entities.VSalesPersonBase.AcceptChanges C# (CSharp) 메소드

AcceptChanges() 공개 메소드

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