Example #1
0
 public static ActionLink WithHref(this ActionLink actionLink, string href)
 {
     actionLink.Href = href;
     return(actionLink);
 }
Example #2
0
 public static ActionLink WithName(this ActionLink actionLink, string name)
 {
     actionLink.Name = name;
     return(actionLink);
 }
Example #3
0
 public static ActionEvent WithLinks(this ActionEvent actionEvent, ActionLink[] links)
 {
     actionEvent.Links = links;
     return actionEvent;
 }