示例#1
0
        public static FileAccessTreeDto AddAttribute(int fileId, int parentId, int attributeTypeId, string value)
        {
            var manager = new FileManager();

            manager.AddAttribute(parentId, attributeTypeId, value);
            return(GetAccessTree(fileId));
        }