public GameHuntPlanService(IGameHuntPlanDao gameHuntPlanDao, IGameDao gameDao, IGameClassDao gameClassDao, IMarketingYearService marketingYearService, IAnnualPlanStatusService annualPlanStatusService) { _gameHuntPlanDao = gameHuntPlanDao; _gameDao = gameDao; _gameClassDao = gameClassDao; _marketingYearService = marketingYearService; _annualPlanStatusService = annualPlanStatusService; }
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; }
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; }
public void SetUp() { _gameHuntPlanDao = new GameHuntPlanDao(); }