public Response GetUserById(int id)
        {
            response = responseFactory.CreateUserResponse();

            response.user = magmaDbContext.Users.Find(id);

            return(responseFactory.UpdateResponse(response, "Success: found user", ResponseStatus.OK));
        }