public SheetController(EntityOwnerService entityOwnerService, SheetRepository sheetRepository, SheetRetrievalService sheetRetrievalService, SheetStatisticsService sheetStatisticsService)
     : base(entityOwnerService)
 {
     this._sheetRepository = sheetRepository;
     this._sheetRetrievalService = sheetRetrievalService;
     this._sheetStatisticsService = sheetStatisticsService;
 }
 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;
 }
 public SheetController(EntityOwnerService entityOwnerService, SheetRepository sheetRepository, SheetRetrievalService sheetRetrievalService, SheetStatisticsService sheetStatisticsService) : base(entityOwnerService)
 {
     this._sheetRepository        = sheetRepository;
     this._sheetRetrievalService  = sheetRetrievalService;
     this._sheetStatisticsService = sheetStatisticsService;
 }
 public MonthlyDigestDataFactory(RecurringSheetEntryRepository recurringSheetEntryRepository, SheetRetrievalService sheetRetrievalService, SheetOffsetCalculationService calculationService)
 {
     this._recurringSheetEntryRepository = recurringSheetEntryRepository;
     this._sheetRetrievalService         = sheetRetrievalService;
     this._calculationService            = calculationService;
 }