예제 #1
0
            public tblAdjustmentsRow AddtblAdjustmentsRow(string BookNo, string ISBN, string BookTitle, string CategoryName, string LibrarianID, string Fullname, System.DateTime DateAdjust)
            {
                tblAdjustmentsRow rowtblAdjustmentsRow = ((tblAdjustmentsRow)(this.NewRow()));

                rowtblAdjustmentsRow.ItemArray = new object[] {
                    BookNo,
                    ISBN,
                    BookTitle,
                    CategoryName,
                    LibrarianID,
                    Fullname,
                    DateAdjust
                };
                this.Rows.Add(rowtblAdjustmentsRow);
                return(rowtblAdjustmentsRow);
            }
예제 #2
0
 public tblAdjustmentsRowChangeEvent(tblAdjustmentsRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemovetblAdjustmentsRow(tblAdjustmentsRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void AddtblAdjustmentsRow(tblAdjustmentsRow row)
 {
     this.Rows.Add(row);
 }
예제 #5
0
 public tblAdjustmentsRowChangeEvent(tblAdjustmentsRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }