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