Skip to content
Snippets Groups Projects
Commit 816a20f8 authored by Henry Koivula's avatar Henry Koivula
Browse files

Fixed faulty commit

parent 8a31fc9b
No related branches found
No related tags found
No related merge requests found
......@@ -15,4 +15,8 @@ public class Asiakas {
public String getTunnus() { return tunnus; }
public String getNimi() { return nimi; }
public ArrayList<Tilaisuus> getTilaisuudet() { return tilaisuudet; }
public void setTunnus(String tunnus) { this.tunnus = tunnus; }
public void setNimi(String nimi) { this.nimi = nimi; }
public void addTilaisuus(Tilaisuus tilaisuus) { tilaisuudet.add(tilaisuus); }
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment