public ste_unidadRowChangeEvent(ste_unidadRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void Addste_unidadRow(ste_unidadRow row) {
     this.Rows.Add(row);
 }
 public void Removeste_unidadRow(ste_unidadRow row) {
     this.Rows.Remove(row);
 }
 public ste_cargaRow Addste_cargaRow(ste_unidadRow parentste_unidadRowByfk_ste_carga_ste_unidad, System.DateTime carfechaasignacion, System.DateTime carfechasalida) {
     ste_cargaRow rowste_cargaRow = ((ste_cargaRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             null,
             carfechaasignacion,
             carfechasalida};
     if ((parentste_unidadRowByfk_ste_carga_ste_unidad != null)) {
         columnValuesArray[1] = parentste_unidadRowByfk_ste_carga_ste_unidad[0];
     }
     rowste_cargaRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowste_cargaRow);
     return rowste_cargaRow;
 }