public DrugAlcoholScreeningsMessage(DrugAlcoholScreeningExtractView patient)
 {
     patient.PatientExtractView.DrugAlcoholScreeningExtracts = new List <DrugAlcoholScreeningExtractView>();
     Demographic = patient.PatientExtractView;
     Extracts.Add(patient);
     DrugAlcoholScreeningExtracts.Add(patient);
 }
 public IMessage <DrugAlcoholScreeningExtractView> Generate(DrugAlcoholScreeningExtractView extract)
 {
     return(new DrugAlcoholScreeningsMessage(extract));
 }