コード例 #1
0
 public void Update(Top30 top30)
 {
     _top30Dal.Update(top30);
 }
コード例 #2
0
 public ActionResult Edit(Top30 top30)
 {
     _top30Service.Update(top30);
     return(RedirectToAction("Index"));
 }
コード例 #3
0
 public void Add(Top30 top30)
 {
     _top30Dal.Add(top30);
 }
コード例 #4
0
 public ActionResult Create(Top30 top30)
 {
     _top30Service.Add(top30);
     return(RedirectToAction("Index"));
 }