This commit is contained in:
Suphonchai Phoonsawat 2025-07-11 10:03:38 +07:00
parent e58bda8e9e
commit 53e547f168
2 changed files with 268 additions and 2 deletions

View file

@ -740,7 +740,7 @@ namespace BMA.EHR.Application.Repositories
}
}
public async Task<List<SearchProfileDto>> SearchProfileEmployee(string? citizenId, string? firstName, string? lastName, string accessToken)
public async Task<List<SearchProfileDto>> SearchProfileEmployee(string? citizenId, string? firstName, string? lastName, string accessToken, string? role, string? nodeId, int? node)
{
try
{
@ -750,7 +750,10 @@ namespace BMA.EHR.Application.Repositories
{
citizenId = citizenId,
firstName = firstName,
lastName = lastName
lastName = lastName,
role = role,
nodeId = nodeId,
node = node,
};
var profiles = new List<SearchProfileDto>();