using SharedLibrary.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RepositoryLibrary { public class LocalRepository : IRepository { public async Task Lookup() { throw new RepositoryException(); } } }