Beispiel #1
0
 public PrescriptionDTO(int dosage, string usage, string period, MedicineDTO medicine, DateTime date, PatientDTO patient)
 {
     Dosage   = dosage;
     Usage    = usage;
     Period   = period;
     Date     = date;
     Patient  = patient;
     Medicine = medicine;
 }
Beispiel #2
0
 public PropositionDTO(long id, string state, int positive, int negative, string description, MedicineDTO medicine, List <ApprovalDTO> approvals)
 {
     Id        = id;
     State     = state;
     Positive  = positive;
     Negative  = negative;
     Medicine  = medicine;
     Approvals = approvals;
 }
Beispiel #3
0
 public PropositionDTO(long id, string state, MedicineDTO medicine)
 {
     Id       = id;
     State    = state;
     Medicine = medicine;
 }
Beispiel #4
0
 public PropositionDTO(string description, string state, MedicineDTO medicine)
 {
     State    = state;
     Medicine = medicine;
 }