예제 #1
0
파일: Datos.cs 프로젝트: yesashii/upa
            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);
            }
예제 #2
0
파일: Datos.cs 프로젝트: yesashii/upa
 public ProsupuestadoRealRowChangeEvent(ProsupuestadoRealRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
예제 #3
0
파일: Datos.cs 프로젝트: yesashii/upa
 public void RemoveProsupuestadoRealRow(ProsupuestadoRealRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
파일: Datos.cs 프로젝트: yesashii/upa
 public void AddProsupuestadoRealRow(ProsupuestadoRealRow row)
 {
     this.Rows.Add(row);
 }
예제 #5
0
파일: Datos.cs 프로젝트: yesashii/upa
 public ProsupuestadoRealRowChangeEvent(ProsupuestadoRealRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #6
0
파일: Datos.cs 프로젝트: yesashii/upa
 public void RemoveProsupuestadoRealRow(ProsupuestadoRealRow row)
 {
     this.Rows.Remove(row);
 }
예제 #7
0
파일: Datos.cs 프로젝트: yesashii/upa
 public void AddProsupuestadoRealRow(ProsupuestadoRealRow row)
 {
     this.Rows.Add(row);
 }