public DictionaryInterfaceClass()
 {
     Dictionary = new Dictionary<string, int>
     {
         { "existing", 1 }
     };
     Collection = new List<int>
     {
         1,
         2,
         3
     };
     Employee = new EmployeeReference
     {
         Name = "EmployeeName!"
     };
 }
 public DictionaryInterfaceClass()
 {
     Dictionary = new Dictionary <string, int>
     {
         { "existing", 1 }
     };
     Collection = new List <int>
     {
         1,
         2,
         3
     };
     Employee = new EmployeeReference
     {
         Name = "EmployeeName!"
     };
 }