This solution should help me explain my desire
This commit is contained in:
10
RepositoryLibrary/IRepository.cs
Normal file
10
RepositoryLibrary/IRepository.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace RepositoryLibrary
|
||||
{
|
||||
public interface IRepository
|
||||
{
|
||||
Task<object> Lookup();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user