public IHttpActionResult GetAllReports() { if (!ModelState.IsValid) { return(BadRequest()); } return(Ok(_reportServices.GetAllReports().Data)); }