public UserModel Get(int?id)
        {
            if (id == null)
            {
                throw new InvalidInputException(_path, "Get()");
            }

            return(new UserModel(_getUserData.GetUserWithArtworks(id)));
        }