Ejemplo n.º 1
0
        public Example CreateExample(string workspaceId, string intent, CreateExample body)
        {
            try
            {
                var result = AssistantRepository.CreateExample(workspaceId, intent, body);

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

            return(null);
        }