예제 #1
0
        public CounterexampleCollection ListCounterexamples(string workspaceId, long?pageLimit = null, bool?includeCount = null, string sort = null, string cursor = null)
        {
            try
            {
                var result = AssistantRepository.ListCounterexamples(workspaceId, pageLimit, includeCount, sort, cursor);

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

            return(null);
        }