Example #1
0
 public IHttpActionResult ReadAll()
 {
     using (var scope = _contextScopeFactory.CreateReadOnly())
     {
         var seating = _seatingService.GetAll();
         return(Ok(seating));
     }
 }