Beispiel #1
0
        [HttpGet("{floorId:int}")] //int value for route
        public IActionResult GetById(int floorId)
        {
            var floor = _floorRepository.GetWithIncludesById(floorId);

            return(Ok(floor));
        }