예제 #1
0
        public OperationResult ChangeParticipantAvatar(long accountId, string newAvatar)
        {
            return(InvokeOperations.InvokeOperation(() =>
            {
                Logger.Trace("Change avatar for {0}", accountId);

                tournamentRepository.ChangeAvatar(accountId, newAvatar);
            }));
        }