public CollectionsController(
     ICollectionManagerService collectionService,
     IMapper mapper)
 {
     _collectionService = collectionService;
     _mapper            = mapper;
 }
 public FeedsController(
     ICollectionManagerService collectionService,
     IFeedManagerService feedService,
     IFeedReadingService readingService,
     IMapper mapper)
 {
     _collectionService = collectionService;
     _feedService       = feedService;
     _readingService    = readingService;
     _mapper            = mapper;
 }