public void Setup()
 {
     _person          = SampleDataFactory.CreatePerson("John");
     _person.LastName = null;
     _vm         = SampleDataFactory.CreatePersonVM(_person);
     _properties = TypeDescriptor.GetProperties(_vm);
 }
Exemple #2
0
 public void Setup()
 {
     _person = new Person();
     _vm     = new PersonVM(_person);
 }