fix issue #1263
This commit is contained in:
parent
e58bda8e9e
commit
53e547f168
2 changed files with 268 additions and 2 deletions
|
|
@ -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>();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue