Exemplo n.º 1
0
        public JsonResult Reserve(int id, [FromServices] IDrivesService drivesService)
        {
            KeyValuePair <bool, string> result = drivesService.ReserveSeat(id, this.userId);

            return(Json(new { result = result.Key, message = result.Value }));
        }