Exemple #1
0
 public DailyReportDataModelAdapter(
     IReportEntryFactory reportEntryFactory,
     IMapper mapper) : base(mapper)
 {
     _reportEntryFactory = reportEntryFactory;
     _mapper             = mapper;
 }
 public CommandContainer(
     IDayEntriesExportViewService sapExportService,
     IReportEntryFactory reportEntryFactory,
     IDailyReportRepository dailyReportRepository,
     IInformationPublisher informationPublisher,
     IViewModelDisplayService vmDisplayService)
 {
     _sapExportService      = sapExportService;
     _reportEntryFactory    = reportEntryFactory;
     _dailyReportRepository = dailyReportRepository;
     _informationPublisher  = informationPublisher;
     _vmDisplayService      = vmDisplayService;
 }