Ejemplo n.º 1
0
 public BreadCrumbItem(string text, string controller, string action)
 {
     Text       = text;
     Controller = controller;
     Action     = action;
     Type       = BreadCrumbTypes.MvcAction;
 }
Ejemplo n.º 2
0
 public BreadCrumbItem(string text, string url)
 {
     Text = text;
     Url  = url;
     Type = BreadCrumbTypes.Link;
 }
Ejemplo n.º 3
0
 public BreadCrumbItem(string text)
 {
     Text = text;
     Type = BreadCrumbTypes.Text;
 }