private async Task <Travel> FindTravelAsync([NotNull] string travelId, bool isActive = true)
 {
     return(await travelRepository.GetSingleAsync(x => x.Id == travelId && x.IsActive == isActive) ?? throw new Exception("EntityNotFound"));
 }