Exemplo n.º 1
0
 public ReportsController(
     IDailyReportRepository dailyReportRepository,
     IMonthlyReportRepository monthlyReportRepository)
 {
     _dailyReportRepository   = dailyReportRepository;
     _monthlyReportRepository = monthlyReportRepository;
 }
Exemplo n.º 2
0
 public JournalVoucherRuleService(IMonthlyReportRepository monthlyReportRepository, IUnitOfWork <AnnualReportsDbContext> uow)
 {
     _monthlyReportRepository = monthlyReportRepository;
     _uow = uow;
 }