public static string Type(this IAssociationEnd associationEnd, string prefix, string suffix)
 {
     return(associationEnd.Type(prefix, suffix, false));
 }
 public static string Type(this IAssociationEnd associationEnd, string suffix, bool readOnly)
 {
     return(associationEnd.Type("", suffix, readOnly));
 }
 public static string Type(this IAssociationEnd associationEnd)
 {
     return(associationEnd.Type("", false));
 }