Exemple #1
0
        public async Task AddPointsToUser(int userId, Point point)
        {
            await _pointRepository.AddPointsToUser(userId, point);

            await _unitOfwork.CompleteAsync();
        }