コード例 #1
0
 public IEnumerable <HotelDTO> GetAll() => _mapper.Map <IEnumerable <HotelDTO> >(_hotelRepository.GetAll());
コード例 #2
0
        public ActionResult HotelsOverview()
        {
            List <Hotel> hotels = db.GetAll();

            return(View(hotels));
        }