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

This commit is contained in:
Leandro Hernan Rojas 2025-04-04 15:16:24 -03:00
parent a3e0b556c3
commit b2ace78329

View File

@ -16,6 +16,8 @@ namespace Models.Repositories
{
var customers = await _context.PhSCustomers
.Include(c => c.Accounttypes)
.Include(c => c.PhSCustomerAddresses)
.Include(c => c.PhSCustomerDocuments)
.Take(100)
.ToListAsync();
return customers.Select(EntityMapper.MapEntity<PhSCustomer, ECustomer>);