18 lines
447 B
C#
18 lines
447 B
C#
using System;
|
|
using Autodesk.Revit.DB;
|
|
using KGdev.BI3D.Revit.Common;
|
|
using KGdev.BI3D.Revit.Common.Models;
|
|
|
|
namespace KGdev.BI3D.Revit.Implementations
|
|
{
|
|
internal class DefaultElementIdProvider : IElementIdProvider
|
|
{
|
|
public string GetElementId(LinkedElementIdPath elementIdPath)
|
|
{
|
|
return string.Join<ElementId>("-", elementIdPath.ElementIds);
|
|
}
|
|
|
|
private const string SEPARATOR = "-";
|
|
}
|
|
}
|