Ejemplo n.º 1
0
            public AssignmentsRow AddAssignmentsRow(int AssignmentID, string Name, string Description, string Location)
            {
                AssignmentsRow rowAssignmentsRow = ((AssignmentsRow)(this.NewRow()));

                rowAssignmentsRow.ItemArray = new object[] {
                    AssignmentID,
                    Name,
                    Description,
                    Location
                };
                this.Rows.Add(rowAssignmentsRow);
                return(rowAssignmentsRow);
            }
Ejemplo n.º 2
0
 public void RemoveAssignmentsRow(AssignmentsRow row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 3
0
 public void AddAssignmentsRow(AssignmentsRow row)
 {
     this.Rows.Add(row);
 }
Ejemplo n.º 4
0
 public AssignmentsRowChangeEvent(AssignmentsRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }