public Repository(Guid id, string name, List <string> sourcefilenames) { _eventApplier = new EventApplier(this); _eventApplier.Apply(new RepositoryImported(id, name)); _sourcefilenames = new List <Sourcefile>(); ImportSourcefiles(sourcefilenames); }
public void MarkChangesAsCommitted() { _eventApplier = new EventApplier(this); }
public Repository() { _eventApplier = new EventApplier(this); _sourcefilenames = new List <Sourcefile>(); }