public void AggregateNodeChangeWithThrowException(AggregateCollectionMapperTestDto aggregateNodeCollectionMapperTestDto, AggregateCollectionMapperTestAggregateRootEntity aggregateNodeCollectionMapperTestAggregateRootEntity, AggregateCollectionMapperTestAggregateNodeEntity aggregateNodeCollectionMapperTestAggregateNodeEntity)
 {
     NoOfTimesAggregateNodeChangeWithThrowExceptionMethodCalled++;
     throw new Exception();
 }
 public void AggregateNodeRemoveWithThrowException(AggregateCollectionMapperTestDto aggregateNodeCollectionMapperTestDto, AggregateCollectionMapperTestAggregateRootEntity aggregateNodeCollectionMapperTestAggregateRootEntity, AggregateCollectionMapperTestAggregateNodeEntity aggregateNodeCollectionMapperTestAggregateNodeEntity)
 {
     NoOfTimesAggregateNodeRemoveWithThrowExceptionMethodCalled++;
     throw new Exception();
 }
 public void AggregateNodeChange(AggregateCollectionMapperTestDto aggregateNodeCollectionMapperTestDto, AggregateCollectionMapperTestAggregateRootEntity aggregateNodeCollectionMapperTestAggregateRootEntity, AggregateCollectionMapperTestAggregateNodeEntity aggregateNodeCollectionMapperTestAggregateNodeEntity)
 {
     NoOfTimesAggregateNodeChangeMethodCalled++;
 }
 public void AggregateNodeRemove(AggregateCollectionMapperTestDto aggregateNodeCollectionMapperTestDto, AggregateCollectionMapperTestAggregateRootEntity aggregateNodeCollectionMapperTestAggregateRootEntity, AggregateCollectionMapperTestAggregateNodeEntity aggregateNodeCollectionMapperTestAggregateNodeEntity)
 {
     NoOfTimesAggregateNodeRemoveMethodCalled++;
 }