Files
ServicesCallService/RepositoryLibrary/LocalRepository.cs
2020-10-19 12:55:29 -04:00

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();
}
}
}