public ReportsController(
     IDailyReportRepository dailyReportRepository,
     IMonthlyReportRepository monthlyReportRepository)
 {
     _dailyReportRepository   = dailyReportRepository;
     _monthlyReportRepository = monthlyReportRepository;
 }
Example #2
0
 public JournalVoucherRuleService(IMonthlyReportRepository monthlyReportRepository, IUnitOfWork <AnnualReportsDbContext> uow)
 {
     _monthlyReportRepository = monthlyReportRepository;
     _uow = uow;
 }