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)); }
public ActionResult OrderSearchSavePopupContent(string uids) { var model = new SaveOrdersModel(uids); return(PartialView(model)); }