Ejemplo n.º 1
0
 public static void ExportGroup(EDOConfig config, GroupVM group, List<StudyUnitVM> studyUnits)
 {
     string path = IOUtils.QuerySavePathName(Resources.GroupExport, null, DDI_GROUP_FILTER, true);
     if (string.IsNullOrEmpty(path))
     {
         return;
     }
     DDI3Writer writer = new DDI3Writer(config);
     writer.WriteGroup(path, group, studyUnits);
     DDI3Reader.Validate(path);
 }