I have two functions that query two methods of a
Angular
.. I need to compare the
API
of the results and only show that the id is equal , Thanks in advance! I have the following code:
function SearchDespesa(response){
$this.Despesa = response;
$this.Despesa.DespesaId; // Aqui retorna um json com as informações..
// Daqui em diante não sei oque fazer
}
function SearchTipoDespesa(response){
$this.TipoDespesa = response;
$this.Despesa.EmpresaId; // Aqui retorna um json com as informações..
// Daqui em diante não sei oque fazer
}