Example #1
0
            public TCompanyServersRow AddTCompanyServersRow(int serverId, string serverName, string ipAddress, int minPort, int maxPort, bool inactive, int coId, int portNo, bool inUse, bool isRunning)
            {
                TCompanyServersRow rowTCompanyServersRow = ((TCompanyServersRow)(this.NewRow()));

                rowTCompanyServersRow.ItemArray = new object[] {
                    serverId,
                    serverName,
                    ipAddress,
                    minPort,
                    maxPort,
                    inactive,
                    null,
                    coId,
                    portNo,
                    inUse,
                    isRunning
                };
                this.Rows.Add(rowTCompanyServersRow);
                return(rowTCompanyServersRow);
            }
Example #2
0
 public TCompanyServersRowChangeEvent(TCompanyServersRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #3
0
 public void RemoveTCompanyServersRow(TCompanyServersRow row)
 {
     this.Rows.Remove(row);
 }
Example #4
0
 public void AddTCompanyServersRow(TCompanyServersRow row)
 {
     this.Rows.Add(row);
 }