Ejemplo n.º 1
0
 public static string ModularAction(this UrlHelper helper, string actionName, string controllerName, string areaName, string moduleName, IDictionary <string, object> dictionary)
 {
     return(helper.Action(actionName, controllerName, AreaHelpers.GetRouteViewDictionary(areaName, moduleName, dictionary)));
 }
Ejemplo n.º 2
0
 public static string ModularAction(this UrlHelper helper, string actionName, string controllerName, string areaName, object arguments)
 {
     return(helper.Action(actionName, controllerName, AreaHelpers.GetRouteViewDictionary(areaName, AreaHelpers.GetModuleName(helper.RequestContext.RouteData), arguments)));
 }