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