public void RemoveCPSRow(CPSRow row) {
     this.Rows.Remove(row);
 }
 public CPSRowChangeEvent(CPSRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddCPSRow(CPSRow row) {
     this.Rows.Add(row);
 }
 public MalzemeRow AddMalzemeRow(CPSRow parentCPSRowByCPSMalzeme, int ADET, string RAFNO, UniteRow parentUniteRowByUniteMalzeme, EkipmanRow parentEkipmanRowByEkipmanMalzeme, int MIN, int MAX) {
     MalzemeRow rowMalzemeRow = ((MalzemeRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             null,
             ADET,
             RAFNO,
             null,
             null,
             MIN,
             MAX};
     if ((parentCPSRowByCPSMalzeme != null)) {
         columnValuesArray[1] = parentCPSRowByCPSMalzeme[0];
     }
     if ((parentUniteRowByUniteMalzeme != null)) {
         columnValuesArray[4] = parentUniteRowByUniteMalzeme[0];
     }
     if ((parentEkipmanRowByEkipmanMalzeme != null)) {
         columnValuesArray[5] = parentEkipmanRowByEkipmanMalzeme[0];
     }
     rowMalzemeRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowMalzemeRow);
     return rowMalzemeRow;
 }