BaseOntologyEntity.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ModelData.BusinessModel.BaseAndInterface
{
public abstract class BaseOntologyEntity : I_URLcs
{
const string BaseURL = "http://127.0.0.1/Jena/";
public string URL { set; get; }
public string Title
{
get
{
return URL.Split('\\')[0];
}
}
}
}