Exemple #1
0
 public static MvcHtmlString Badge(this HtmlHelper helper, BadgeType badgeType, IconParameters icon, string text)
 {
     return(BadgeConstructor.ConstructBadge(badgeType, IconConstructor.ConstructIcon(icon) + " " + text));
 }
Exemple #2
0
 public static MvcHtmlString Badge(this HtmlHelper helper, BadgeType badgeType, string text)
 {
     return(BadgeConstructor.ConstructBadge(badgeType, text));
 }