public SeriesTableRow AddSeriesTableRow(string Series_Date, string SeriesNumber, string Modality, string Organ, string Series_Description, string Number_of_Instances, string SeriesInstanceUID, string StudyInstanceUID, string FrameCount, System.Drawing.Image Thumbnail, string StudyID)
            {
                SeriesTableRow rowSeriesTableRow = ((SeriesTableRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    Series_Date,
                    SeriesNumber,
                    Modality,
                    Organ,
                    Series_Description,
                    Number_of_Instances,
                    SeriesInstanceUID,
                    StudyInstanceUID,
                    FrameCount,
                    Thumbnail,
                    StudyID
                };
                rowSeriesTableRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowSeriesTableRow);
                return(rowSeriesTableRow);
            }
 public void RemoveSeriesTableRow(SeriesTableRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddSeriesTableRow(SeriesTableRow row)
 {
     this.Rows.Add(row);
 }
 public SeriesTableRowChangeEvent(SeriesTableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }