Beispiel #1
0
        public async Task <List <House> > getHouseList()
        {
            var res = await _housesService.getHouseList();

            if (res == null)
            {
                NotFound();
            }
            return(res);
        }