Esempio n. 1
0
            public tb_gastoRow Addtb_gastoRow(int id_gasto, int id_personal, int id_caja, decimal monto, string concepto, string observacion)
            {
                tb_gastoRow rowtb_gastoRow = ((tb_gastoRow)(this.NewRow()));

                rowtb_gastoRow.ItemArray = new object[] {
                    id_gasto,
                    id_personal,
                    id_caja,
                    monto,
                    concepto,
                    observacion
                };
                this.Rows.Add(rowtb_gastoRow);
                return(rowtb_gastoRow);
            }
Esempio n. 2
0
 public tb_gastoRowChangeEvent(tb_gastoRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 3
0
 public void Removetb_gastoRow(tb_gastoRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 4
0
 public void Addtb_gastoRow(tb_gastoRow row)
 {
     this.Rows.Add(row);
 }