Example #1
0
            public tfi_BancoRow Addtfi_BancoRow(string IdBanco, string Nombre, string Direccion, string Telefono, System.DateTime FechaCreacion, long IdConexionCreacion, System.Byte[] UltimaModificacion, long IdConexionUltimaModificacion, long IdReservado, long IdEmpresa, System.Guid RowId)
            {
                tfi_BancoRow rowtfi_BancoRow = ((tfi_BancoRow)(this.NewRow()));

                rowtfi_BancoRow.ItemArray = new object[] {
                    IdBanco,
                    Nombre,
                    Direccion,
                    Telefono,
                    FechaCreacion,
                    IdConexionCreacion,
                    UltimaModificacion,
                    IdConexionUltimaModificacion,
                    IdReservado,
                    IdEmpresa,
                    RowId
                };
                this.Rows.Add(rowtfi_BancoRow);
                return(rowtfi_BancoRow);
            }
Example #2
0
 public tfi_BancoRowChangeEvent(tfi_BancoRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #3
0
 public void Removetfi_BancoRow(tfi_BancoRow row)
 {
     this.Rows.Remove(row);
 }
Example #4
0
 public void Addtfi_BancoRow(tfi_BancoRow row)
 {
     this.Rows.Add(row);
 }