public tsy_ImpuestosExRow Addtsy_ImpuestosExRow(string IdImpuesto, string Descripcion, string FormulaDeCalculo, string IdTipoDeConcepto, string MetodoDeComparacion, string AplicadoA, string Impuesto, string DescripcionCorta, string DescripcionLarga, System.Decimal Alicuota)
            {
                tsy_ImpuestosExRow rowtsy_ImpuestosExRow = ((tsy_ImpuestosExRow)(this.NewRow()));

                rowtsy_ImpuestosExRow.ItemArray = new object[] {
                    IdImpuesto,
                    Descripcion,
                    FormulaDeCalculo,
                    IdTipoDeConcepto,
                    MetodoDeComparacion,
                    AplicadoA,
                    Impuesto,
                    DescripcionCorta,
                    DescripcionLarga,
                    Alicuota
                };
                this.Rows.Add(rowtsy_ImpuestosExRow);
                return(rowtsy_ImpuestosExRow);
            }
 public tsy_ImpuestosExRowChangeEvent(tsy_ImpuestosExRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void Removetsy_ImpuestosExRow(tsy_ImpuestosExRow row)
 {
     this.Rows.Remove(row);
 }
 public void Addtsy_ImpuestosExRow(tsy_ImpuestosExRow row)
 {
     this.Rows.Add(row);
 }