Exemple #1
0
 public NMImage(FileAccessHandler.SaveAttributes saveAtts, int examID, string techIn)
 {
     FilePath = @"C:\\ImageData\\" + saveAtts.FileName + "_dcm.png";
     ExamID = examID;
     TechInitials = techIn;
     ImageDataAccess = new NMImageDA(this);
     //TODO: Uncomment when fix for creating a DICOM file is added
     //ImageDataAccess.SetDicomObject();
 }
Exemple #2
0
 public NMImage(string filePath, int examID, string techIn, string name)
 {
     FilePath = filePath;
     ExamID = examID;
     TechInitials = techIn;
     Name = name;
     ImageDataAccess = new NMImageDA(this);
     ImageDataAccess.SetDicomObject();
 }