public ProsupuestadoRealRow AddProsupuestadoRealRow(string CARR_TDESC, string CARR_CCOD, string TOTAL_MATR_COMPROMETIDA, string TOTAL_COL_COMPROMETIDA, string TOTAL_MATR_REAL, string TOTAL_COL_REAL, string SALDO, string SEDE_TDESC, string periodo, string fecha_inicio, string fecha_termino) { ProsupuestadoRealRow rowProsupuestadoRealRow = ((ProsupuestadoRealRow)(this.NewRow())); rowProsupuestadoRealRow.ItemArray = new object[] { CARR_TDESC, CARR_CCOD, TOTAL_MATR_COMPROMETIDA, TOTAL_COL_COMPROMETIDA, TOTAL_MATR_REAL, TOTAL_COL_REAL, SALDO, SEDE_TDESC, periodo, fecha_inicio, fecha_termino }; this.Rows.Add(rowProsupuestadoRealRow); return(rowProsupuestadoRealRow); }
public ProsupuestadoRealRowChangeEvent(ProsupuestadoRealRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveProsupuestadoRealRow(ProsupuestadoRealRow row) { this.Rows.Remove(row); }
public void AddProsupuestadoRealRow(ProsupuestadoRealRow row) { this.Rows.Add(row); }