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

                tournamentRepository.ChangeDescription(accountId, newDescription);
            }));
        }