コード例 #1
0
 public ActionResult Create(PracticeModel model)
 {
     ICashFlowManagerService service = new CashFlowManagerService();
     service.AddPractice(model.SelectedPractice);
     return RedirectToAction("Index","Setup");
 }
コード例 #2
0
 public ActionResult Create()
 {
     PracticeModel model = new PracticeModel();
     return View(model);
 }