コード例 #1
0
ファイル: PointService.cs プロジェクト: McVay/PointsAPI
        public async Task AddPointsToUser(int userId, Point point)
        {
            await _pointRepository.AddPointsToUser(userId, point);

            await _unitOfwork.CompleteAsync();
        }