Exemplo n.º 1
0
            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);
            }
Exemplo n.º 2
0
 public tblBarrowedRowChangeEvent(tblBarrowedRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemovetblBarrowedRow(tblBarrowedRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AddtblBarrowedRow(tblBarrowedRow row)
 {
     this.Rows.Add(row);
 }
Exemplo n.º 5
0
 public tblBarrowedRowChangeEvent(tblBarrowedRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }