public TypeDescription FindTypeDescription <T>()
        {
            var type = typeof(T);

            return(TypeDescriptions.FirstOrDefault(d => d.FullName == type.FullName));
        }
 public TypeDescription FindTypeDescription(string typeFullName)
 {
     return(TypeDescriptions.FirstOrDefault(d => d.FullName == typeFullName));
 }