Ejemplo n.º 1
0
 /// <summary>
 /// Returns the guest corresponding to its id.
 /// </summary>
 /// <param name="guestId">The guest id</param>
 /// <returns>The guest entity</returns>
 public async Task <ResponseModel> CheckOutRoom(Guid guestId)
 {
     return(await _repository.CheckOutRoom(guestId));
 }