NMF.Models.Evolution.ModelChangeCollection.Apply C# (CSharp) 메소드

Apply() 공개 메소드

Applies all changes in this collection to the given repository.
public Apply ( IModelRepository repository ) : void
repository IModelRepository
리턴 void
        public void Apply(IModelRepository repository)
        {
            foreach (var change in Changes)
                change.Apply(repository);
        }