public RedirectToRouteResult AddLocationComment(Guid id, string comment)
 {
     _locationService.AddLocationNotes(id, comment);
     return(RedirectToAction("Location", new { id }));
 }