Ejemplo n.º 1
0
            public ClientsGroupsRow AddClientsGroupsRow(string ClientGroupName, string ClientGroupRemarks, bool IsInner, bool IsSpecial)
            {
                ClientsGroupsRow rowClientsGroupsRow = ((ClientsGroupsRow)(this.NewRow()));

                rowClientsGroupsRow.ItemArray = new object[] {
                    null,
                    ClientGroupName,
                    ClientGroupRemarks,
                    IsInner,
                    IsSpecial
                };
                this.Rows.Add(rowClientsGroupsRow);
                return(rowClientsGroupsRow);
            }
Ejemplo n.º 2
0
 public ClientsGroupsRowChangeEvent(ClientsGroupsRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Ejemplo n.º 3
0
 public void RemoveClientsGroupsRow(ClientsGroupsRow row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 4
0
 public void AddClientsGroupsRow(ClientsGroupsRow row)
 {
     this.Rows.Add(row);
 }
Ejemplo n.º 5
0
 public ClientsGroupsRowChangeEvent(ClientsGroupsRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }