예제 #1
0
파일: CatchService.cs 프로젝트: Mrotas/Hoof
 public CatchService(ICatchDao catchDao, IGameDao gameDao, IUserDao userDao, IHuntsmanDao huntsmanDao, IRegionDao regionDao, IMarketingYearDao marketingYearDao)
 {
     _catchDao         = catchDao;
     _gameDao          = gameDao;
     _userDao          = userDao;
     _huntsmanDao      = huntsmanDao;
     _regionDao        = regionDao;
     _marketingYearDao = marketingYearDao;
 }
예제 #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
파일: CatchDaoTest.cs 프로젝트: Mrotas/Hoof
 public void SetUp()
 {
     _catchDao = new CatchDao();
 }