Add iterative memento example

This commit is contained in:
Petrutiu Mihai
2016-07-18 11:50:32 +03:00
parent 24022c1436
commit 07b8236615
6 changed files with 198 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
using MememntoPattern.Employee;
using MememntoPattern.EmployeeSerialized;
using MememntoPattern.IterativeEmployee;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -28,6 +29,10 @@ namespace MememntoPattern
GoToNextStep();
EmployeeIterativeExample empIterEx = new EmployeeIterativeExample();
empIterEx.Run();
GoToNextStep();
Console.WriteLine(GetPitfalls());
}