public static bool HasMappingSettings(this MappingSettingsModel model)
 {
     return(model.HasStereotype("Mapping Settings"));
 }
Example #2
0
 public bool Equals(MappingSettingsModel other)
 {
     return(Equals(_element, other?._element));
 }
        public static MappingSettings GetMappingSettings(this MappingSettingsModel model)
        {
            var stereotype = model.GetStereotype("Mapping Settings");

            return(stereotype != null ? new MappingSettings(stereotype) : null);
        }