Example #1
0
 public Status Post(Rating input)
 {
     input.HotelId = Id;
     _hotels.AddRating(input);
     return(201);
 }