* Added Logo to the output file
This commit is contained in:
@@ -14,4 +14,11 @@ public class WzClientController(IWzClientService service) : Controller
|
||||
IEnumerable<WzClientDto> wzClients = await service.GetAll();
|
||||
return Ok(wzClients);
|
||||
}
|
||||
|
||||
[HttpGet("by-id")]
|
||||
public async Task<ActionResult<WzClientDto>> GetById(Guid id)
|
||||
{
|
||||
WzClientDto? wzClient = await service.GetById(id);
|
||||
return Ok(wzClient);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user