// GET: UserController
        public async Task <ActionResult> Index()
        {
            var model = await _userApiService.GetAll();

            return(View(model));
        }