public SheetController(EntityOwnerService entityOwnerService, SheetRepository sheetRepository, SheetRetrievalService sheetRetrievalService, SheetStatisticsService sheetStatisticsService)
     : base(entityOwnerService)
 {
     this._sheetRepository = sheetRepository;
     this._sheetRetrievalService = sheetRetrievalService;
     this._sheetStatisticsService = sheetStatisticsService;
 }
Example #2
0
 public SheetController(EntityOwnerService entityOwnerService, SheetRepository sheetRepository, SheetRetrievalService sheetRetrievalService, SheetStatisticsService sheetStatisticsService, IMapper mappingEngine, SheetLastVisitedMarkerService sheetLastVisitedMarkerService) : base(entityOwnerService)
 {
     this._sheetRepository               = sheetRepository;
     this._sheetRetrievalService         = sheetRetrievalService;
     this._sheetStatisticsService        = sheetStatisticsService;
     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;
 }