public ActionResult Create(PracticeModel model)
 {
     ICashFlowManagerService service = new CashFlowManagerService();
     service.AddPractice(model.SelectedPractice);
     return RedirectToAction("Index","Setup");
 }
 public ActionResult Create()
 {
     PracticeModel model = new PracticeModel();
     return View(model);
 }