public void TestAddessIsEmptyReturnsFalseWhenNotEmpty()
 {
     var customerWithAddress = new Customer();
     customerWithAddress.AddAddress(new Address());
     Assert.IsFalse(customerWithAddress.AddressesIsEmpty());
 }