Exemplo n.º 1
0
 public TimelineMapper(DatabaseContext database, IMapper <UserEntity, HttpUser> userMapper, IHighlightTimelineService highlightTimelineService, IBookmarkTimelineService bookmarkTimelineService, ITimelineService timelineService, ITimelinePostService timelinePostService)
 {
     _database   = database;
     _userMapper = userMapper;
     _highlightTimelineService = highlightTimelineService;
     _bookmarkTimelineService  = bookmarkTimelineService;
     _timelineService          = timelineService;
     _timelinePostService      = timelinePostService;
 }
Exemplo n.º 2
0
 public HighlightTimelineController(IHighlightTimelineService service, ITimelineService timelineService, IGenericMapper mapper)
 {
     _service         = service;
     _timelineService = timelineService;
     _mapper          = mapper;
 }