public override System.Web.Mvc.JsonResult AddOrderAttachments(int orderId, RasmiOnline.Domain.Enum.AttachmentType attachmentType)
        {
            var callInfo = new T4MVC_System_Web_Mvc_JsonResult(Area, Name, ActionNames.AddOrderAttachments);

            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "orderId", orderId);
            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "attachmentType", attachmentType);
            AddOrderAttachmentsOverride(callInfo, orderId, attachmentType);
            return(callInfo);
        }
 partial void AddOrderAttachmentsOverride(T4MVC_System_Web_Mvc_JsonResult callInfo, int orderId, RasmiOnline.Domain.Enum.AttachmentType attachmentType);