public static bool HasTextConstraints(this AttributeModel model)
 {
     return(model.HasStereotype("Text Constraints"));
 }
 public static bool HasIndex(this AttributeModel model)
 {
     return(model.HasStereotype("Index"));
 }
 public static bool HasPrimaryKey(this AttributeModel model)
 {
     return(model.HasStereotype("Primary Key"));
 }
 public static bool HasDefaultConstraint(this AttributeModel model)
 {
     return(model.HasStereotype("Default Constraint"));
 }