public dtDashboardRow AdddtDashboardRow(string NewsTitle, string NewsLink)
            {
                dtDashboardRow rowdtDashboardRow = ((dtDashboardRow)(this.NewRow()));

                rowdtDashboardRow.ItemArray = new object[] {
                    NewsTitle,
                    NewsLink
                };
                this.Rows.Add(rowdtDashboardRow);
                return(rowdtDashboardRow);
            }
 public dtDashboardRowChangeEvent(dtDashboardRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemovedtDashboardRow(dtDashboardRow row)
 {
     this.Rows.Remove(row);
 }
 public void AdddtDashboardRow(dtDashboardRow row)
 {
     this.Rows.Add(row);
 }