예제 #1
0
        private bool isProperty(PointableInstance instance)
        {
            var conceptInstance = instance as ConceptInstance;

            if (conceptInstance == null)
            {
                return(false);
            }

            throw new NotImplementedException();
        }
예제 #2
0
        private string getPlural(PointableInstance instance)
        {
            var printable = instance.ToPrintable();

            return(getPlural(printable));
        }
예제 #3
0
 private IEnumerable <Concept2> getProperties(PointableInstance instance)
 {
     throw new NotImplementedException();
 }