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