I have a request made in Angular for C #. However I do not know how to receive the data in My API In C #.
getWithFilters(filter: any) {
let parametros: any = {
razaoSocial: filter.razaoSocial,
cnpj: filter.cnpjcpf,
telefone: filter.telefone
}
return this.http
.get(this.UrlService + '/Clientes', parametros)
.map((res: any) => res.data)
.catch((super.serviceError));
}
So I do the request, however in C # How do I receive these parameters?
Thank you in advance. Lucas.