public ActionResult AddContributor(Contributor c, Deposit d)
 {
     _mgr.AddContributor(c);
     d.ContributorId = c.Id;
     _mgr.AddDeposit(d);
     return(Redirect("/contributors/index"));
 }