public CropDatesRow AddCropDatesRow(int SortIndex, int group, string CBTT, int uidx, int cropCurveNumber, string CropName, string Start, string FullCover, string Terminate)
            {
                CropDatesRow rowCropDatesRow = ((CropDatesRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    SortIndex,
                    group,
                    CBTT,
                    uidx,
                    cropCurveNumber,
                    CropName,
                    Start,
                    FullCover,
                    Terminate
                };
                rowCropDatesRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowCropDatesRow);
                return(rowCropDatesRow);
            }
 public void RemoveCropDatesRow(CropDatesRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddCropDatesRow(CropDatesRow row)
 {
     this.Rows.Add(row);
 }
 public CropDatesRowChangeEvent(CropDatesRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }