Add Patch Logger
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 2m48s

This commit is contained in:
Leandro Hernan Rojas 2025-04-05 19:10:56 -03:00
parent 9366a69370
commit f61f26c98b

View File

@ -69,9 +69,9 @@ namespace Models.Repositories
var customers = await query.ToListAsync(); var customers = await query.ToListAsync();
Console.WriteLine("VALOR RECIBIDO DE 'name': {name}", name); Console.WriteLine($"VALOR RECIBIDO DE 'name': {name}");
Console.WriteLine("VALOR RECIBIDO DE 'document': {document}", document); Console.WriteLine($"VALOR RECIBIDO DE 'document': {document}");
Console.WriteLine("VALOR RECIBIDO DE 'email': {email}", email); Console.WriteLine($"VALOR RECIBIDO DE 'email': {email}");
return customers.Select(EntityMapper.MapEntity<PhSCustomer, ECustomer>); return customers.Select(EntityMapper.MapEntity<PhSCustomer, ECustomer>);