Exemplo n.º 1
0
            public TUsersRow AddTUsersRow(int coId, string firstName, string lastName, string userName, string password, bool anyServer, bool inactive, int userRole, string userMode)
            {
                TUsersRow rowTUsersRow = ((TUsersRow)(this.NewRow()));

                rowTUsersRow.ItemArray = new object[] {
                    null,
                    coId,
                    firstName,
                    lastName,
                    userName,
                    password,
                    anyServer,
                    inactive,
                    userRole,
                    userMode
                };
                this.Rows.Add(rowTUsersRow);
                return(rowTUsersRow);
            }
Exemplo n.º 2
0
 public TUsersRowChangeEvent(TUsersRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemoveTUsersRow(TUsersRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AddTUsersRow(TUsersRow row)
 {
     this.Rows.Add(row);
 }