public SheetEntryController(EntityOwnerService entityOwnerService, SheetEntryRepository sheetEntryRepository, SheetRetrievalService sheetRetrievalService, IMapper mappingEngine, SheetLastVisitedMarkerService sheetLastVisitedMarkerService) : base(entityOwnerService)
 {
     this._sheetEntryRepository          = sheetEntryRepository;
     this._sheetRetrievalService         = sheetRetrievalService;
     this._mappingEngine                 = mappingEngine;
     this._sheetLastVisitedMarkerService = sheetLastVisitedMarkerService;
 }
Exemple #2
0
 public DelayedSheetVisitUpdateMarkerJob(SheetLastVisitedMarkerService sheetLastVisitedMarkerService, SheetRepository sheetRepository)
 {
     this._sheetLastVisitedMarkerService = sheetLastVisitedMarkerService;
     this._sheetRepository = sheetRepository;
 }