public class Account { public Person owner; public String email; Account(Person owner, String email){ this.owner = owner; this.email = email; } public void accountErstellen(Person p, String e_email){ this.owner = p; this.email = e_email; } }