private bool isDuplicate(Guest entity)
 {
     return _unitOfWork.GuestRepository.IsDuplicate(entity);
 }
 private bool hasBookings(Guest entity)
 {
     return _unitOfWork.GuestRepository.HasBookings(entity);
 }