This solution should help me explain my desire
This commit is contained in:
17
RepositoryLibrary/LocalRepository.cs
Normal file
17
RepositoryLibrary/LocalRepository.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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<object> Lookup()
|
||||
{
|
||||
throw new RepositoryException();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user