18 lines
347 B
C#
18 lines
347 B
C#
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();
|
|
}
|
|
}
|
|
}
|