public MalzemeRowChangeEvent(MalzemeRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveMalzemeRow(MalzemeRow row) {
     this.Rows.Remove(row);
 }
 public TumOzelliklerRow AddTumOzelliklerRow(MalzemeRow parentMalzemeRowByMalzeme_TumOzellikler, string MALZEMEADI, string MARKA, string SPECT, string RESIM, int ADET, string RAFNO, string EKIPMAN, string UNITE, int MIN, int MAX) {
     TumOzelliklerRow rowTumOzelliklerRow = ((TumOzelliklerRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             MALZEMEADI,
             MARKA,
             SPECT,
             RESIM,
             ADET,
             RAFNO,
             EKIPMAN,
             UNITE,
             MIN,
             MAX,
             null};
     if ((parentMalzemeRowByMalzeme_TumOzellikler != null)) {
         columnValuesArray[0] = parentMalzemeRowByMalzeme_TumOzellikler[1];
     }
     rowTumOzelliklerRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowTumOzelliklerRow);
     return rowTumOzelliklerRow;
 }
 public void AddMalzemeRow(MalzemeRow row) {
     this.Rows.Add(row);
 }