public SubscriptionController()
 {
     categoryService = new FeedCategoryService();
     feedService = new FeedSourceService();
     subscriptionService = new SubscriptionService();
     entryService = new FeedEntryService();
 }
Example #2
0
 public CategoryController()
 {
     HideLayout( typeof( Reader.LayoutController ) );
     categoryService = new FeedCategoryService();
     subscriptionService = new SubscriptionService();
     entryService = new FeedEntryService();
 }
Example #3
0
 public SubscriptionController()
 {
     categoryService = new FeedCategoryService();
     feedService = new FeedSourceService();
     subscriptionService = new SubscriptionService();
     entryService = new FeedEntryService();
     base.HideLayout( typeof( Reader.LayoutController ) );
 }
Example #4
0
 public CategoryController()
 {
     categoryService = new FeedCategoryService();
     subscriptionService = new SubscriptionService();
     entryService = new FeedEntryService();
 }
Example #5
0
 public EntryController()
 {
     entryService = new FeedEntryService();
     base.HideLayout( typeof( Reader.LayoutController ) );
 }
Example #6
0
 public EntryController()
 {
     entryService = new FeedEntryService();
 }
 public FeedSourceService()
 {
     subscriptionService = new SubscriptionService();
     entryService = new FeedEntryService();
 }