Exemple #1
0
        public object DeleteExample(string workspaceId, string intent, string text)
        {
            try
            {
                var result = AssistantRepository.DeleteExample(workspaceId, intent, text);

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

            return(null);
        }