Beispiel #1
0
        public Counterexample UpdateCounterexample(string workspaceId, string text, UpdateCounterexample body)
        {
            try
            {
                var result = AssistantRepository.UpdateCounterexample(workspaceId, text, body);

                return(result);
            }
            catch (Exception ex)
            {
                Logger.Error("AssistantService.UpdateCounterexample failed", this, ex);
            }

            return(null);
        }