public Status Get()
 {
     Output = new CollectionDto <Hotel>
     {
         Items = _hotels.GetRecentlyRated()
     };
     return(200);
 }