public IcomsCredential AddIcomsCredential(string Username, string Password)
            {
                IcomsCredential rowIcomsCredential = ((IcomsCredential)(this.NewRow()));

                rowIcomsCredential.ItemArray = new object[] {
                    null,
                    Username,
                    Password
                };
                this.Rows.Add(rowIcomsCredential);
                return(rowIcomsCredential);
            }
 public IcomsCredentialChangeEvent(IcomsCredential row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveIcomsCredential(IcomsCredential row)
 {
     this.Rows.Remove(row);
 }
 public void AddIcomsCredential(IcomsCredential row)
 {
     this.Rows.Add(row);
 }