Example #1
0
            public T_AlumnosRow AddT_AlumnosRow(string FECHA_CORTE, string SEDE_TDESC, string CARRERA, string RUT, string NOMBRE)
            {
                T_AlumnosRow rowT_AlumnosRow = ((T_AlumnosRow)(this.NewRow()));

                rowT_AlumnosRow.ItemArray = new object[] {
                    FECHA_CORTE,
                    SEDE_TDESC,
                    CARRERA,
                    RUT,
                    NOMBRE
                };
                this.Rows.Add(rowT_AlumnosRow);
                return(rowT_AlumnosRow);
            }
Example #2
0
 public T_AlumnosRowChangeEvent(T_AlumnosRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
Example #3
0
 public void RemoveT_AlumnosRow(T_AlumnosRow row)
 {
     this.Rows.Remove(row);
 }
Example #4
0
 public void AddT_AlumnosRow(T_AlumnosRow row)
 {
     this.Rows.Add(row);
 }
Example #5
0
 public T_AlumnosRowChangeEvent(T_AlumnosRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #6
0
 public void RemoveT_AlumnosRow(T_AlumnosRow row)
 {
     this.Rows.Remove(row);
 }
Example #7
0
 public void AddT_AlumnosRow(T_AlumnosRow row)
 {
     this.Rows.Add(row);
 }