public static PostReturnModel CreateModel(Post post)
        {
            PostReturnModel model = new PostReturnModel()
            {
                Id = post.Id,
                Title = post.Title
            };

            return model;
        }