public PresDrug(Prescription prescription, Drug drug, int amount) { this.prescription = prescription; this.drug = drug; this.amount = amount; }
public PresDrug() { this.prescription = new Prescription(); this.drug = new Drug(); this.amount = -1; }