/// <summary>
 /// Initializes a new instance of the <see cref="T:System.Object"/> class.
 /// </summary>
 public SheetRetrievalService(SheetRepository sheetRepository, AppOwnerRepository appOwnerRepository, IMapper mappingEngine, RecurringSheetEntryRepository recurringSheetEntryRepository)
 {
     this._sheetRepository               = sheetRepository;
     this._appOwnerRepository            = appOwnerRepository;
     this._mappingEngine                 = mappingEngine;
     this._recurringSheetEntryRepository = recurringSheetEntryRepository;
 }
 public MonthlyDigestDataFactory(RecurringSheetEntryRepository recurringSheetEntryRepository, SheetRetrievalService sheetRetrievalService, SheetOffsetCalculationService calculationService)
 {
     this._recurringSheetEntryRepository = recurringSheetEntryRepository;
     this._sheetRetrievalService         = sheetRetrievalService;
     this._calculationService            = calculationService;
 }
 public RecurringSheetEntryController(EntityOwnerService entityOwnerService, IMapper mappingEngine, RecurringSheetEntryRepository recurringSheetEntryRepository) : base(entityOwnerService)
 {
     this._mappingEngine = mappingEngine;
     this._recurringSheetEntryRepository = recurringSheetEntryRepository;
 }