Esempio n. 1
0
        public EntryTags(IEntryTagsCore entryTagsCore)
        {
            var blogHome = ManagerFactory.BlogManagerInstance.GetCurrentBlog();

            EntryTagsCore = entryTagsCore ?? new EntryTagsCore(blogHome);
            TagLinks      = new Dictionary <string, string>();
        }
Esempio n. 2
0
 public BlogEntryTags(IEntryTagsCore entryTagsCore = null)
 {
     EntryTagsCore = entryTagsCore ?? new EntryTagsCore(CurrentBlog);
 }
Esempio n. 3
0
 public BlogEntryTags(IEntryTagsCore entryTagsCore = null)
 {
     EntryTagsCore = entryTagsCore ?? new EntryTagsCore(CurrentBlog);
 }
Esempio n. 4
0
 public EntryTags(IEntryTagsCore entryTagsCore)
 {
     var blogHome = ManagerFactory.BlogManagerInstance.GetCurrentBlog();
     EntryTagsCore = entryTagsCore ?? new EntryTagsCore(blogHome);
     TagLinks = new Dictionary<string, string>();
 }