private bool SaveFile(MElementList dataset) { string rootPath = m_theStore.StoragePath + Convert.ToString(System.IO.Path.DirectorySeparatorChar); DAPBussiness bussiness = new DAPBussiness(); var result = bussiness.SaveDICOMInfo(dataset, base.getNegotiatedTsn(), m_theObserver.getImplClassUid(), m_theObserver.getImplVersionName(), rootPath); return(result); }
private void OnFormLoad(object sender, EventArgs e) { try { List <string> listImage = new List <string>(); DAPBussiness bussiness = new DAPBussiness(); listImage = bussiness.SearchDICOMFile(studyInstanceUID); m_dcmcontViewer.OpenDicomImages(listImage); } catch (Exception ex) { _logger.Error("FormDcmInfo pops up exception during being launched: " + ex.ToString()); } }