コード例 #1
0
ファイル: ConceptLogic.cs プロジェクト: jstadnicki/tbi
        public OperationResult<DeleteConceptViewModel> GetDeleteViewModel(long id)
        {
            var title = this.conceptsService.GetConceptTitle(id);
            var confirmation = "--- delete concept? ---";

            var result = new DeleteConceptViewModel { Title = title, Confirmation = confirmation, Id = id };
            return new OperationResult<DeleteConceptViewModel>(result);
        }
コード例 #2
0
ファイル: ConceptsController.cs プロジェクト: jstadnicki/tbi
 public ActionResult Delete(DeleteConceptViewModel model)
 {
     this.conceptLogic.Delete(model.Id);
     return this.RedirectToAction("Index", "Concepts");
 }