예제 #1
0
 public void RegisterRemoved(Model.IAggregateRoot entity, Repository.IUnitOfWorkRepository repository)
 {
     if (!this._toBeRemoved.ContainsKey(entity))
     {
         this._toBeRemoved.Add(entity, repository);
     }
 }
예제 #2
0
 public void PersistDeletionOf(Model.IAggregateRoot entity)
 {
     Console.WriteLine(" the deletion job in DB");
 }
예제 #3
0
 public void PersistUpdateOf(Model.IAggregateRoot entity)
 {
     Console.WriteLine(" the update job in DB");
 }