Skip to content

Commit

Permalink
Fix code style issues with dotnet_format
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Sep 1, 2024
1 parent 9fb9472 commit 25eff46
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions REMS.BackendApi/Features/Agent/AgentController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ public async Task<IActionResult> SearchAgentByNameAndLocation(SearchAgentRequest
return Ok(agentList);
}

[HttpGet("{pageNumber}/{pageSize}",Name = "AgentAll")]
[HttpGet("{pageNumber}/{pageSize}", Name = "AgentAll")]
public async Task<IActionResult> AgentAll(int pageNumber, int pageSize)
{
Result<AgentListResponseModel> agentList = await _blAgent.AgentAll(pageNumber,pageSize);
Result<AgentListResponseModel> agentList = await _blAgent.AgentAll(pageNumber, pageSize);

return Ok(agentList);
}
Expand Down
2 changes: 1 addition & 1 deletion REMS.Modules/Features/Agent/BL_Agent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ public async Task<Result<AgentListResponseModel>> SearchAgentByNameAndLocationAs

public async Task<Result<AgentListResponseModel>> AgentAll(int pageNumber, int pageSize)
{
return await _daAgent.AgentAllAsync(pageNumber,pageSize);
return await _daAgent.AgentAllAsync(pageNumber, pageSize);
}
}

0 comments on commit 25eff46

Please sign in to comment.