University stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516
  1. abstract class Resept {
  2. static int nextId = 0;
  3. int id;
  4. Legemiddel legemiddel;
  5. String utskriverNavn;
  6. String pasientNavn;
  7. int reit;
  8. Resept(String utskriverNavn, String pasientNavn, int reit) {
  9. id = nextId++;
  10. this.utskriverNavn = utskriverNavn;
  11. this.pasientNavn = pasientNavn;
  12. this.reit = reit;
  13. }
  14. }