public ProjectRelationsRow AddProjectRelationsRow(Guid ProjectUID, string ProjectName, Guid RelatedProjectUID, string RelatedProjectName, int Relationship)
            {
                ProjectRelationsRow rowProjectRelationsRow = ((ProjectRelationsRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    ProjectUID,
                    ProjectName,
                    RelatedProjectUID,
                    RelatedProjectName,
                    Relationship
                };
                rowProjectRelationsRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowProjectRelationsRow);
                return(rowProjectRelationsRow);
            }
Exemplo n.º 2
0
 public ProjectRelationsRowChangeEvent(ProjectRelationsRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveProjectRelationsRow(ProjectRelationsRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddProjectRelationsRow(ProjectRelationsRow row)
 {
     this.Rows.Add(row);
 }