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;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="T:System.Object"/> class.
 /// </summary>
 public SheetStatisticsService(SheetRepository sheetRepository, SheetEntryRepository sheetEntryRepository)
 {
     this._sheetRepository      = sheetRepository;
     this._sheetEntryRepository = sheetEntryRepository;
 }
 public SheetEntryController(EntityOwnerService entityOwnerService, SheetEntryRepository sheetEntryRepository, SheetRetrievalService sheetRetrievalService) : base(entityOwnerService)
 {
     this._sheetEntryRepository  = sheetEntryRepository;
     this._sheetRetrievalService = sheetRetrievalService;
 }
 public SheetEntryController(EntityOwnerService entityOwnerService, SheetEntryRepository sheetEntryRepository, SheetRetrievalService sheetRetrievalService)
     : base(entityOwnerService)
 {
     this._sheetEntryRepository = sheetEntryRepository;
     this._sheetRetrievalService = sheetRetrievalService;
 }
예제 #5
0
 public TagReportController(IMapper mapper, SheetEntryRepository sheetEntryRepository, TagRepository tagRepository, EntityOwnerService entityOwnerService) : base(entityOwnerService)
 {
     this._mapper = mapper;
     this._sheetEntryRepository = sheetEntryRepository;
     this._tagRepository        = tagRepository;
 }