using Windows.Networking.Connectivity;
using FormulaOneApp.Classic.Core.Services.Internet;
namespace FormulaOneApp.Classic.Windows.Services.Internet
{
public class InternetService : IInternetService
{
///
///
///
///
public bool HasConnection()
{
return NetworkInformation.GetInternetConnectionProfile() != null;
}
}
}