Example #1
0
 public HoleService(IHoleRepository holeRepository, IHoleStatisticsRepository holeStatisticsRepository, IGameRepository gameRepository, IShotRepository shotRepository)
 {
     _holeRepository           = holeRepository;
     _holeStatisticsRepository = holeStatisticsRepository;
     _gameRepository           = gameRepository;
     _shotRepository           = shotRepository;
 }
 public HoleService(IHoleRepository holeRepository, IHoleStatisticsRepository holeStatisticsRepository, IGameRepository gameRepository, IShotRepository shotRepository)
 {
     _holeRepository = holeRepository;
     _holeStatisticsRepository = holeStatisticsRepository;
     _gameRepository = gameRepository;
     _shotRepository = shotRepository;
 }
 public HoleService(IHoleRepository holeRepository, IHoleStatisticsRepository holeStatisticsRepository, IUnitOfWork unitOfWork)
 {
     _holeRepository = holeRepository;
     _holeStatisticsRepository = holeStatisticsRepository;
     _unitOfWork = unitOfWork;
 }