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