예제 #1
0
        public object DeleteIntent(string workspaceId, string intent)
        {
            try
            {
                var result = AssistantRepository.DeleteIntent(workspaceId, intent);

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

            return(null);
        }