示例#1
0
        public IHttpActionResult ShowAllBlogs(ShowAllBlog_Req _Req)
        {
            ShowAllBlog_Res _response = new ShowAllBlog_Res();

            _response = _blogService.ShowAllBlogs(_Req);
            return(Ok(_response));
        }
示例#2
0
        ShowAllBlog_Res IBlogService.ShowAllBlogs(ShowAllBlog_Req _Req)
        {
            ShowAllBlog_Res _response = new ShowAllBlog_Res();

            _response = _blogData.ShowAllBlogs(_Req);
            return(_response);
        }
示例#3
0
        public ShowAllBlog_Res ShowAllBlogs(ShowAllBlog_Req _Req)
        {
            ShowAllBlog_Res _response = new ShowAllBlog_Res();

            return(_response);
        }