ChiakiYu.Service.Blogs.BlogService.GetBlog C# (CSharp) Метод

GetBlog() публичный Метод

根据主键获取实体
public GetBlog ( long id ) : Blog
id long 日志id
Результат Blog
        public Blog GetBlog(long id)
        {
            return _blogRepository.Get(id);
        }