示例#1
0
        public Workspace UpdateWorkspace(string workspaceId, UpdateWorkspace properties = null, bool?append = null)
        {
            try
            {
                var result = AssistantRepository.UpdateWorkspace(workspaceId, properties, append);

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

            return(null);
        }