Пример #1
0
 public GameHuntPlanService(IGameHuntPlanDao gameHuntPlanDao, IGameDao gameDao, IGameClassDao gameClassDao, IMarketingYearService marketingYearService, IAnnualPlanStatusService annualPlanStatusService)
 {
     _gameHuntPlanDao         = gameHuntPlanDao;
     _gameDao                 = gameDao;
     _gameClassDao            = gameClassDao;
     _marketingYearService    = marketingYearService;
     _annualPlanStatusService = annualPlanStatusService;
 }
Пример #2
0
 public GamePlanService(IGameDao gameDao, IGameHuntPlanDao gamePlanDao, ILossGameDao lossGameDao, IHuntedGameDao huntedGameDao, IGameClassDao gameClassDao, IGameCountFor10MarchDao countFor10MarchDao, ICatchDao catchDao)
 {
     _gameDao                = gameDao;
     _gameHuntPlanDao        = gamePlanDao;
     _lossGameDao            = lossGameDao;
     _huntedGameDao          = huntedGameDao;
     _gameClassDao           = gameClassDao;
     _gameCountFor10MarchDao = countFor10MarchDao;
     _catchDao               = catchDao;
 }
Пример #3
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;
 }
Пример #4
0
 public void SetUp()
 {
     _gameHuntPlanDao = new GameHuntPlanDao();
 }