Blog.Tools.ApplicationSetup.Program.LoadAddress C# (CSharp) Method

LoadAddress() private static method

private static LoadAddress ( ) : void
return void
		private static void LoadAddress()
		{
			_users.ForEach(a => AddressRepository.Add(new Address
			{
				UserId = a.UserId,
				StreetAddress = "Street Address",
				City = "City",
				State = "State",
				Country = "Country",
				Zip = 1234
			}));

			AddConsoleMessage("Successfully added addresses...");
		}