Пример #1
0
 public ReportService(IGameDao gameDao,
                      IGameHuntPlanDao gameHuntPlanDao,
                      IHuntedGameDao huntedGameDao,
                      IMarketingYearService marketingYearService,
                      IGameClassDao gameClassDao,
                      ILossGameDao lossGameDao,
                      ICatchDao catchDao,
                      IFodderDao fodderDao,
                      ILaborService laborService)
 {
     _gameDao              = gameDao;
     _gameHuntPlanDao      = gameHuntPlanDao;
     _huntedGameDao        = huntedGameDao;
     _marketingYearService = marketingYearService;
     _gameClassDao         = gameClassDao;
     _lossGameDao          = lossGameDao;
     _catchDao             = catchDao;
     _fodderDao            = fodderDao;
     _laborService         = laborService;
 }
Пример #2
0
 public LaborController(ILaborService laborService, IMarketingYearService marketingYearService)
 {
     _laborService         = laborService;
     _marketingYearService = marketingYearService;
 }