Beispiel #1
0
        public FinancialReportController(
            IFinancialReportService financialReportService,
            IDocumentService documentService,
            IMapper mapper)
        {
            Require.Objects.NotNull(financialReportService, nameof(financialReportService));
            Require.Objects.NotNull(documentService, nameof(documentService));
            Require.Objects.NotNull(mapper, nameof(mapper));

            _financialReportService = financialReportService;
            _documentService        = documentService;
            _mapper = mapper;
        }
 public AccountantController(IFinancialReportService reportService)
 {
     _reportService = reportService;
 }
 public EmailNotificationsController(IEmailNotificationService emailNotificationService, IFinancialReportService financialReportService)
 {
     _emailNotificationService = emailNotificationService;
     _financialReportService   = financialReportService;
 }