Add SelectedNodeId parameter to SearchProfile method and update related DTO #1555
This commit is contained in:
parent
23bbd9791e
commit
818ff38e99
3 changed files with 5 additions and 2 deletions
|
|
@ -970,7 +970,7 @@ namespace BMA.EHR.Application.Repositories
|
|||
}
|
||||
}
|
||||
|
||||
public async Task<GetProfileByKeycloakIdRootAddTotalDto> SearchProfile(string? citizenId, string? firstName, string? lastName, string accessToken, int page, int pageSize, string? role, string? nodeId, int? node)
|
||||
public async Task<GetProfileByKeycloakIdRootAddTotalDto> SearchProfile(string? citizenId, string? firstName, string? lastName, string accessToken, int page, int pageSize, string? role, string? nodeId, int? node,Guid? selectedNodeId)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
|
@ -986,6 +986,7 @@ namespace BMA.EHR.Application.Repositories
|
|||
node = node,
|
||||
page = page,
|
||||
pageSize = pageSize,
|
||||
selectedNodeId = selectedNodeId
|
||||
};
|
||||
|
||||
var profiles = new List<GetProfileByKeycloakIdRootDto>();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue