コード例 #1
0
ファイル: PawContext.cs プロジェクト: JsAppNinja/pawloyalty
        public static PawContext Create(HtmlHelper htmlHelper)
        {
            PawContext context = new PawContext();

            // Step 1. Get the provider
            context.Provider = htmlHelper.ViewData["__Provider"] as Provider;

            return(context);
        }
コード例 #2
0
ファイル: RouteHelpers.cs プロジェクト: JsAppNinja/pawloyalty
 public static PawContext GetPawContext(this HtmlHelper @this)
 {
     return(PawContext.Create(@this));
 }