Esempio n. 1
0
            public LocksRow AddLocksRow(int EntityTypeID, int EntityID, string UserName, string EntityTypeName)
            {
                LocksRow rowLocksRow = ((LocksRow)(this.NewRow()));

                rowLocksRow.ItemArray = new object[] {
                    EntityTypeID,
                    EntityID,
                    UserName,
                    null,
                    EntityTypeName
                };
                this.Rows.Add(rowLocksRow);
                return(rowLocksRow);
            }
Esempio n. 2
0
 public LocksRowChangeEvent(LocksRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 3
0
 public void RemoveLocksRow(LocksRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 4
0
 public void AddLocksRow(LocksRow row)
 {
     this.Rows.Add(row);
 }
Esempio n. 5
0
 public LocksRowChangeEvent(LocksRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 6
0
 public LocksRowChangeEvent(LocksRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
Esempio n. 7
0
 public void RemoveLocksRow(LocksRow row) {
     this.Rows.Remove(row);
 }
Esempio n. 8
0
 public void AddLocksRow(LocksRow row) {
     this.Rows.Add(row);
 }