コード例 #1
0
ファイル: TagService.cs プロジェクト: NLoban/PhotoBook
 public void AddTag(TagAddViewModel tagAddViewModel)
 {
     var tag = new Tag {Name = tagAddViewModel.Name};
     tagRepository.Create(tag);
 }
コード例 #2
0
ファイル: TagController.cs プロジェクト: NLoban/PhotoBook
 public ActionResult Create(TagAddViewModel tagAddViewModel)
 {
     tagService.AddTag(tagAddViewModel);
     return RedirectToAction("List");
 }