示例#1
0
        public ValueExport GetValue(string workspaceId, string entity, string value, bool?export = null)
        {
            try
            {
                var result = AssistantRepository.GetValue(workspaceId, entity, value, export);

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

            return(null);
        }