public MultiDicomImportEventArgs(bool cancelled, int totalFileCount, int totalStored, int totalFailed)
 {
     TotalFileCount = totalFileCount;
     TotalStored    = totalStored;
     TotalFailed    = totalFailed;
     Cancelled      = cancelled;
     State          = MultiDicomImportState.Ending;
 }
 public MultiDicomImportEventArgs(int totalFileCount)
 {
     TotalFileCount = totalFileCount;
     TotalStored    = 0;
     TotalFailed    = 0;
     Cancelled      = false;
     State          = MultiDicomImportState.Starting;
 }