public static bool HasCSharpProjectOptions(this WCFServiceApplicationModel model)
 {
     return(model.HasStereotype("C# Project Options"));
 }
 public static bool HasNETFrameworkSettings(this WCFServiceApplicationModel model)
 {
     return(model.HasStereotype(".NET Framework Settings"));
 }
        public static CSharpProjectOptions GetCSharpProjectOptions(this WCFServiceApplicationModel model)
        {
            var stereotype = model.GetStereotype("C# Project Options");

            return(stereotype != null ? new CSharpProjectOptions(stereotype) : null);
        }
        public static NETFrameworkSettings GetNETFrameworkSettings(this WCFServiceApplicationModel model)
        {
            var stereotype = model.GetStereotype(".NET Framework Settings");

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