diff --git a/Models/Repositories/PhSLookUpRepository.cs b/Models/Repositories/PhSLookUpRepository.cs index 44466ae..d0a2424 100644 --- a/Models/Repositories/PhSLookUpRepository.cs +++ b/Models/Repositories/PhSLookUpRepository.cs @@ -24,7 +24,7 @@ namespace Models.Repositories => await _context.PhSInstitutions .Where(c => c.Name.Contains(filter)) .OrderBy(c => c.Name) - .Select(c => new ELookUpItem { Id = c.Id, Nombre = c.Name }) + .Select(c => new ELookUpItem { Id = c.Id, Nombre = c.Name + " (" + c.Streetaddress + ")" }) .Take(limit) .ToListAsync(); public async Task> PatientsListAsync(string filter, int limit = 10)