コード例 #1
0
 public ActionResult Delete(int id)
 {
     lampRepo.Delete(id);
     return(RedirectToAction("Index"));
 }
コード例 #2
0
ファイル: LampService.cs プロジェクト: ZeXVex/AssigmentClab
 public Lamp DeleteLamp(int id)
 {
     return(_lampRepo.Delete(id));
 }