public Task Visit(ICountry country) { _lastVisted = country; _countries.Add(country); country.AddVisitor(this); return(Task.CompletedTask); }