Esempio n. 1
0
        public bool AddGroupListTableRow(String GroupName)
        {
            GroupListTableRow newRow = (GroupListTableRow)this.NewRow();

            try
            {
                newRow.GroupName = GroupName;
                this.Rows.Add(newRow);
            }catch (Exception e)
            {
                throw new System.ApplicationException("Error in Auto-Generated: GroupListTable.AddGroupListTableRow(String) Method", e);
            }
            return(true);
        }
Esempio n. 2
0
        public virtual bool Fill(string fixedString)
        {
            GroupListTableRow newRow = (GroupListTableRow)this.NewRow();

            try
            {
                this.Rows.Add(newRow);
            }
            catch (Exception e)
            {
                throw new System.ApplicationException("Error in Auto-Generated: GroupListTable.Fill(string) Method", e);
            }
            return(true);
        }
Esempio n. 3
0
 public void AddGroupListTableRow(GroupListTableRow row)
 {
     this.Rows.Add(row);
 }
Esempio n. 4
0
 public bool SyncRowValues(GroupListTableRow SourceRow)
 {
     return(SyncRowValues((DataRow)SourceRow));
 }
Esempio n. 5
0
 public void RemoveGroupListTableRow(GroupListTableRow row)
 {
     this.Rows.Remove(row);
 }