Ejemplo n.º 1
0
        public userinfo_tRow Adduserinfo_tRow(string Id, string Name, string Email, string Phono, string Office, string MaxScore, bool Flag)
        {
            userinfo_tRow rowuserinfo_tRow = ((userinfo_tRow)(this.NewRow()));

            object[] columnValuesArray = new object[] {
                Id,
                Name,
                Email,
                Phono,
                Office,
                MaxScore,
                Flag
            };
            rowuserinfo_tRow.ItemArray = columnValuesArray;
            this.Rows.Add(rowuserinfo_tRow);
            return(rowuserinfo_tRow);
        }
Ejemplo n.º 2
0
 public userinfo_tRowChangeEvent(userinfo_tRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Ejemplo n.º 3
0
 public void Removeuserinfo_tRow(userinfo_tRow row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 4
0
 public void Adduserinfo_tRow(userinfo_tRow row)
 {
     this.Rows.Add(row);
 }