Ejemplo n.º 1
0
 public CategoryController()
 {
     HideLayout(typeof(Reader.LayoutController));
     categoryService     = new FeedCategoryService();
     subscriptionService = new SubscriptionService();
     entryService        = new FeedEntryService();
 }
Ejemplo n.º 2
0
 public ReaderController()
 {
     categoryService     = new FeedCategoryService();
     feedService         = new FeedSourceService();
     subscriptionService = new SubscriptionService();
     entryService        = new FeedEntryService();
 }
 public SubscriptionController()
 {
     categoryService     = new FeedCategoryService();
     feedService         = new FeedSourceService();
     subscriptionService = new SubscriptionService();
     entryService        = new FeedEntryService();
     base.HideLayout(typeof(Reader.LayoutController));
 }
Ejemplo n.º 4
0
 public FeedEntryApiController(IFeedEntryQuery feedEntryQuery,
     IGenericRepository<FeedEntryEntity> feedEntryRepository,
     IFeedEntryService feedEntryService)
 {
     _feedEntryQuery = feedEntryQuery;
     _feedEntryRepository = feedEntryRepository;
     _feedEntryService = feedEntryService;
 }
Ejemplo n.º 5
0
 public CategoryController()
 {
     categoryService     = new FeedCategoryService();
     subscriptionService = new SubscriptionService();
     entryService        = new FeedEntryService();
 }
Ejemplo n.º 6
0
 public FeedSourceService()
 {
     subscriptionService = new SubscriptionService();
     entryService        = new FeedEntryService();
 }
Ejemplo n.º 7
0
 public EntryController()
 {
     entryService = new FeedEntryService();
     base.HideLayout(typeof(Reader.LayoutController));
 }
Ejemplo n.º 8
0
 public EntryController()
 {
     entryService = new FeedEntryService();
 }
Ejemplo n.º 9
0
 public FeedSourceService() {
     subscriptionService = new SubscriptionService();
     entryService = new FeedEntryService();
 }
Ejemplo n.º 10
0
 public CategoryController() {
     categoryService = new FeedCategoryService();
     subscriptionService = new SubscriptionService();
     entryService = new FeedEntryService();
 }
 public SubscriptionController() {
     categoryService = new FeedCategoryService();
     feedService = new FeedSourceService();
     subscriptionService = new SubscriptionService();
     entryService = new FeedEntryService();
 }