public BreadCrumbItem(string text, string controller, string action) { Text = text; Controller = controller; Action = action; Type = BreadCrumbTypes.MvcAction; }
public BreadCrumbItem(string text, string url) { Text = text; Url = url; Type = BreadCrumbTypes.Link; }
public BreadCrumbItem(string text) { Text = text; Type = BreadCrumbTypes.Text; }