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