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