private static void GiveAddressWithPostcode(ICustomerVM customer, string postcode)
 {
     customer.Address.AddressBody = GenString();
     customer.Address.HouseNumber = GenString();
     customer.Address.Postcode = postcode;
 }
Exemple #2
0
		public void Load(ICustomerVM customer) {
			throw new NotImplementedException();
		}