using System.Threading.Tasks;
namespace Knoks.Framework.Services
{
public interface IPhoneService
Task<PhoneNumber> Lookup(string number, string countryCode = null);
}