Beispiel #1
0
 public UserService(UserValidation userValidation, IUserRepository userRepository, IMemoryCache memoryCache, UserPointService userPointService)
 {
     _userValidation   = userValidation;
     _userRepository   = userRepository;
     _memoryCache      = memoryCache;
     _userPointService = userPointService;
 }
Beispiel #2
0
 public OficialGameService(IOficialGameRepository oficialGameRepository, OficialGameValidation oficialGameValidation, UserPointService userPointService)
 {
     _oficialGameRepository = oficialGameRepository;
     _oficialGameValidation = oficialGameValidation;
     _userPointService      = userPointService;
 }