public async Task <UserResponse> GetById(int id) { var user = await userAction.GetById(id); return(userFormatter.ToUserResponse(user)); }