public async Task <IActionResult> GetAllClients()
        {
            var res = await _clientServices.GetAllClientAsync();

            if (res == null)
            {
                return(NotFound());
            }
            return(Ok(new { data = res }));
        }