public ActionResult Index()
 {
     return(View(Mapper.Map <List <HotelReservationViewModel> >(hotelReservationService.GetAllReservationsByClient(User.Identity.Name))));
 }