public ActionResult <Bug> ReportBug(Bug bug) { bug.ReportDate = DateTime.Now; _bugService.Add(bug); return(Ok(bug)); }