public async Task <IActionResult> GetAll()
        {
            var users = await UserService.GetAllAsync();

            return(Ok(users));
        }