/// <summary> /// Creates a new <see cref="ExecuteContext"/> for tracking templates. /// </summary> /// <returns>The execute context.</returns> public ExecuteContext CreateExecuteContext() { return(_service.CreateExecuteContext()); }
/// <summary> /// Creates a new <see cref="ExecuteContext"/> for tracking templates. /// </summary> /// <param name="viewBag">The dynamic view bag.</param> /// <returns>The execute context.</returns> public ExecuteContext CreateExecuteContext(DynamicViewBag viewBag = null) { return(_service.CreateExecuteContext(viewBag)); }