public override System.Web.Mvc.JsonResult Edit(int orderId, RasmiOnline.Domain.Enum.LangType langType, System.Collections.Generic.List <RasmiOnline.Domain.Entity.OrderItem> items)
        {
            var callInfo = new T4MVC_System_Web_Mvc_JsonResult(Area, Name, ActionNames.Edit);

            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "orderId", orderId);
            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "langType", langType);
            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "items", items);
            EditOverride(callInfo, orderId, langType, items);
            return(callInfo);
        }
 partial void EditOverride(T4MVC_System_Web_Mvc_JsonResult callInfo, int orderId, RasmiOnline.Domain.Enum.LangType langType, System.Collections.Generic.List <RasmiOnline.Domain.Entity.OrderItem> items);