Ejemplo n.º 1
0
 public ImmutableTestClass(string stringProperty, string firstName, string lastName, int integerProperty, ImmutableTestClass referenceProperty, IList <ImmutableTestClass> listProperty)
 {
     StringProperty    = stringProperty;
     FirstName         = firstName;
     LastName          = lastName;
     IntegerProperty   = integerProperty;
     ReferenceProperty = referenceProperty;
     ListProperty      = listProperty;
 }
Ejemplo n.º 2
0
 public WhenBuildingTheObject()
 {
     _result = Sut.build();
 }