Example #1
0
 public DummySong(string path, string title, string artist, string album, FilesRow row)
 {
     Path   = path;
     Title  = title;
     Artist = artist;
     Album  = album;
     Row    = row;
 }
Example #2
0
            public FilesRow AddFilesRow(string nodes, string actions)
            {
                FilesRow rowFilesRow = ((FilesRow)(this.NewRow()));

                rowFilesRow.ItemArray = new object[] {
                    nodes,
                    actions
                };
                this.Rows.Add(rowFilesRow);
                return(rowFilesRow);
            }
            public FilesRow AddFilesRow(string Url, string FileName, string FileSize, System.DateTime DateTime)
            {
                FilesRow rowFilesRow = ((FilesRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    null,
                    Url,
                    FileName,
                    FileSize,
                    DateTime
                };
                rowFilesRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowFilesRow);
                return(rowFilesRow);
            }
Example #4
0
            public FilesRow AddFilesRow(string GroupGuid, string FileName, int FileSize, string FileType, System.DateTime SaveDate, int VoterId)
            {
                FilesRow rowFilesRow = ((FilesRow)(this.NewRow()));

                rowFilesRow.ItemArray = new object[] {
                    null,
                    GroupGuid,
                    FileName,
                    FileSize,
                    FileType,
                    SaveDate,
                    VoterId
                };
                this.Rows.Add(rowFilesRow);
                return(rowFilesRow);
            }
Example #5
0
 public FilesRowChangeEvent(FilesRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #6
0
 public FilesRowChangeEvent(FilesRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
Example #7
0
 public void RemoveFilesRow(FilesRow row) {
     this.Rows.Remove(row);
 }
Example #8
0
 public void AddFilesRow(FilesRow row) {
     this.Rows.Add(row);
 }
Example #9
0
 public FilesRowChangeEvent(FilesRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #10
0
 public void RemoveFilesRow(FilesRow row)
 {
     this.Rows.Remove(row);
 }
Example #11
0
 public void AddFilesRow(FilesRow row)
 {
     this.Rows.Add(row);
 }
Example #12
0
 public FilesRowChangeEvent(FilesRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }