private MedicationKey CreateMedicationMappingKey(MedicationMapData md) { var key = new MedicationKey { Form = md.Form, FullName = md.FullName, Route = md.Route, Strength = md.Strength, SubstanceName = md.SubstanceName }; return(key); }
private MedicationKey CreateMedicationKey(MedicationData md) { var key = new MedicationKey { Form = md.Form, FullName = md.FullName, Route = md.Route, Strength = FormatStrengthDisplay(md.Strength, md.Unit), SubstanceName = md.SubstanceName }; return(key); }