Exemplo n.º 1
0
 public UserGameValidation(IOficialGameRepository oficialGameRepository)
 {
     _oficialGameRepository = oficialGameRepository;
 }
Exemplo n.º 2
0
 public OficialGameService(IOficialGameRepository oficialGameRepository, OficialGameValidation oficialGameValidation, UserPointService userPointService)
 {
     _oficialGameRepository = oficialGameRepository;
     _oficialGameValidation = oficialGameValidation;
     _userPointService      = userPointService;
 }