Exemple #1
0
 public GameCountPlanService(IGameCountFor10MarchDao gameCountFor10MarchDao, IGameDao gameDao, IGameClassDao gameClassDao, IMarketingYearService marketingYearService, IAnnualPlanStatusService annualPlanStatusService)
 {
     _gameCountFor10MarchDao = gameCountFor10MarchDao;
     _gameDao                 = gameDao;
     _gameClassDao            = gameClassDao;
     _marketingYearService    = marketingYearService;
     _annualPlanStatusService = annualPlanStatusService;
 }
Exemple #2
0
 public CarcassRevenueService(ICarcassRevenueDao carcassRevenueDao, IHuntDao huntDao, IHuntedGameDao huntedGameDao, IGameDao gameDao, IGameClassDao gameClassDao, IMarketingYearService marketingYearService, IAnnualPlanStatusService annualPlanStatusService)
 {
     _carcassRevenueDao       = carcassRevenueDao;
     _huntDao                 = huntDao;
     _huntedGameDao           = huntedGameDao;
     _gameDao                 = gameDao;
     _gameClassDao            = gameClassDao;
     _marketingYearService    = marketingYearService;
     _annualPlanStatusService = annualPlanStatusService;
 }
Exemple #3
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;
 }
Exemple #4
0
 public HuntService(IHuntDao huntDao, IGameDao gameDao, IUserDao userDao, IHuntsmanDao huntsmanDao, IRegionDao regionDao, IHuntedGameDao huntedGameDao, IGameClassDao gameClassDao, IMarketingYearDao marketingYearDao)
 {
     _huntDao          = huntDao;
     _gameDao          = gameDao;
     _userDao          = userDao;
     _huntsmanDao      = huntsmanDao;
     _regionDao        = regionDao;
     _huntedGameDao    = huntedGameDao;
     _gameClassDao     = gameClassDao;
     _marketingYearDao = marketingYearDao;
 }
Exemple #5
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;
 }
Exemple #6
0
 public void SetUp()
 {
     _gameClassDao = new GameClassDao();
 }