public override System.Web.Mvc.JsonResult AddOrder(RasmiOnline.Domain.Dto.AddOrderModel model, System.Collections.Generic.List <System.Web.HttpPostedFileBase> attachments)
        {
            var callInfo = new T4MVC_System_Web_Mvc_JsonResult(Area, Name, ActionNames.AddOrder);

            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "model", model);
            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "attachments", attachments);
            AddOrderOverride(callInfo, model, attachments);
            return(callInfo);
        }
 partial void AddOrderOverride(T4MVC_System_Web_Mvc_JsonResult callInfo, RasmiOnline.Domain.Dto.AddOrderModel model, System.Collections.Generic.List <System.Web.HttpPostedFileBase> attachments);