Subtext.Framework.BlogInfo.GetBlogById C# (CSharp) Method

GetBlogById() public static method

Gets the blog by id.
public static GetBlogById ( int blogId ) : BlogInfo
blogId int Blog id.
return BlogInfo
        public static BlogInfo GetBlogById(int blogId)
        {
            return ObjectProvider.Instance().GetBlogById(blogId);
        }