using System; using System.Threading.Tasks; namespace RepositoryLibrary { public interface IRepository { Task Lookup(); } }