Exemplo n.º 1
0
            public SpecialtiesRow AddSpecialtiesRow(int SpecialtyID, string Specialtyname)
            {
                SpecialtiesRow rowSpecialtiesRow = ((SpecialtiesRow)(this.NewRow()));

                rowSpecialtiesRow.ItemArray = new object[] {
                    SpecialtyID,
                    Specialtyname
                };
                this.Rows.Add(rowSpecialtiesRow);
                return(rowSpecialtiesRow);
            }
Exemplo n.º 2
0
 public SpecialtiesRowChangeEvent(SpecialtiesRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemoveSpecialtiesRow(SpecialtiesRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AddSpecialtiesRow(SpecialtiesRow row)
 {
     this.Rows.Add(row);
 }