public ActionResult Report(Report newReport)
 {
     return Content("Received Username: "******"   Location: " + newReport.location + "   Incident: " + newReport.incident + "   Witness: " + newReport.witness + "   Supervisor: " + newReport.supervisor + "   Date: " + newReport.date + "  Contributing Factor: " + newReport.contribFactor + "    Notification (Name/Position): " + newReport.notifName + "   Report on (Client/Staff) : " + newReport.victimName);
 }
 // GET: Report
 public ActionResult Report()
 {
     Report one = new Report();
     return View(one);
 }