public override System.Web.Mvc.ActionResult Index(DcmsMobile.BoxManager.Repository.Sound sound)
        {
            var callInfo = new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.Index);

            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "sound", sound);
            IndexOverride(callInfo, sound);
            return(callInfo);
        }
        public override System.Web.Mvc.ActionResult Destination(string palletId, DcmsMobile.BoxManager.Repository.Sound sound)
        {
            var callInfo = new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.Destination);

            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "palletId", palletId);
            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "sound", sound);
            DestinationOverride(callInfo, palletId, sound);
            return(callInfo);
        }
 partial void DestinationOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, string palletId, DcmsMobile.BoxManager.Repository.Sound sound);
 partial void ValidateBoxesOnPalletOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, string palletId, DcmsMobile.BoxManager.Repository.Sound sound);
 partial void IndexOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, DcmsMobile.BoxManager.Repository.Sound sound);
コード例 #6
0
        public override System.Web.Mvc.ActionResult ActivatePallet(string palletId, string lastScanText, DcmsMobile.BoxManager.Repository.Sound sound, string confirmPalletScan)
        {
            var callInfo = new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.ActivatePallet);

            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "palletId", palletId);
            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "lastScanText", lastScanText);
            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "sound", sound);
            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "confirmPalletScan", confirmPalletScan);
            ActivatePalletOverride(callInfo, palletId, lastScanText, sound, confirmPalletScan);
            return(callInfo);
        }
コード例 #7
0
 partial void ActivatePalletOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, string palletId, string lastScanText, DcmsMobile.BoxManager.Repository.Sound sound, string confirmPalletScan);