public tblBarrowersRow AddtblBarrowersRow(string BarrowerID, string Fullname, string CourseName, string LevelName, System.Double TotalFines)
            {
                tblBarrowersRow rowtblBarrowersRow = ((tblBarrowersRow)(this.NewRow()));

                rowtblBarrowersRow.ItemArray = new object[] {
                    BarrowerID,
                    Fullname,
                    CourseName,
                    LevelName,
                    TotalFines
                };
                this.Rows.Add(rowtblBarrowersRow);
                return(rowtblBarrowersRow);
            }
Example #2
0
            public tblBarrowersRow AddtblBarrowersRow(string BarrowerID, string Fullname, string StreetAddress, string CityTown, string Province, string ContactNo, string EmailAddress, string CourseName, string LevelName)
            {
                tblBarrowersRow rowtblBarrowersRow = ((tblBarrowersRow)(this.NewRow()));

                rowtblBarrowersRow.ItemArray = new object[] {
                    BarrowerID,
                    Fullname,
                    StreetAddress,
                    CityTown,
                    Province,
                    ContactNo,
                    EmailAddress,
                    CourseName,
                    LevelName
                };
                this.Rows.Add(rowtblBarrowersRow);
                return(rowtblBarrowersRow);
            }
Example #3
0
 public tblBarrowersRowChangeEvent(tblBarrowersRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #4
0
 public void RemovetblBarrowersRow(tblBarrowersRow row)
 {
     this.Rows.Remove(row);
 }
Example #5
0
 public void AddtblBarrowersRow(tblBarrowersRow row)
 {
     this.Rows.Add(row);
 }
 public tblBarrowersRowChangeEvent(tblBarrowersRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }