Ejemplo n.º 1
0
        public ActionResult OrderSearchSavePopupContent(int?ID, string OrderList, string Name, string GraphListPlane)
        {
            var model = new SaveOrdersModel(ID ?? 0, OrderList, Name, GraphListPlane);

            model.Save();
            model.IsPost         = true;
            model.GraphListPlane = GraphListPlane;
            if (model.Result.IsNullOrEmpty())
            {
                model.SubmitSuccess = true;
            }
            return(PartialView(model));
        }
Ejemplo n.º 2
0
        public ActionResult OrderSearchSavePopupContent(string uids)
        {
            var model = new SaveOrdersModel(uids);

            return(PartialView(model));
        }