示例#1
0
 /// <summary>
 /// 妈妈秀列表
 /// </summary>
 /// <param name="motherShow">参数</param>
 /// <returns></returns>
 public ActionResult Item(GetMotherShow motherShow)
 {
     try
     {
         motherShow = MotherShowClient.Instance.GetMotherShowList(motherShow);
     }
     catch (Exception ex)
     {
         throw;
     }
     ViewBag.GetMotherShow = motherShow;
     return(View());
 }
示例#2
0
 /// <summary>
 /// 妈妈秀管理
 /// </summary>
 /// <param name="model"></param>
 /// <returns></returns>
 public ActionResult Index(GetMotherShow model)
 {
     ViewBag.GetMotherShow = model;
     return(View());
 }