Files
2020-10-19 12:55:29 -04:00

11 lines
156 B
C#

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