public tblBarrowedRow AddtblBarrowedRow(string BarrowerID, string Fullname, string BookNo, string ISBN, string BookTitle, string CategoryName, System.DateTime DateBarrowed, System.DateTime DateDue) { tblBarrowedRow rowtblBarrowedRow = ((tblBarrowedRow)(this.NewRow())); rowtblBarrowedRow.ItemArray = new object[] { BarrowerID, Fullname, BookNo, ISBN, BookTitle, CategoryName, DateBarrowed, DateDue }; this.Rows.Add(rowtblBarrowedRow); return(rowtblBarrowedRow); }
public tblBarrowedRowChangeEvent(tblBarrowedRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemovetblBarrowedRow(tblBarrowedRow row) { this.Rows.Remove(row); }
public void AddtblBarrowedRow(tblBarrowedRow row) { this.Rows.Add(row); }
public tblBarrowedRowChangeEvent(tblBarrowedRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }