ChiakiYu.Service.Blogs.BlogService.GetBlog C# (CSharp) Method

GetBlog() public method

根据主键获取实体
public GetBlog ( long id ) : Blog
id long 日志id
return Blog
        public Blog GetBlog(long id)
        {
            return _blogRepository.Get(id);
        }