コード例 #1
0
ファイル: SongController.cs プロジェクト: babukh/Card-index
 public ActionResult DeleteConfirmed(SongEntity song)
 {
     _songService.DeleteSong(song);
     return RedirectToAction("Index");
 }
コード例 #2
0
ファイル: SongService.cs プロジェクト: babukh/Card-index
 public void UpdateSong(SongEntity song)
 {
     _songRepository.Update(song.ToDalSong());
     _uow.Commit();
 }