public ActionResult getPostsPaging([FromQuery] PostParams postParams)
        {
            var posts = _postContext.getPostsPaging(postParams);

            if (posts.Items == null)
            {
                return(BadRequest("there are no posts to view"));
            }
            Response.AddApplicationPagination(posts.PageSize, posts.PageNumber, posts.totalPages, posts.count);

            return(Ok(posts.Items));
        }