begin implementing quotes repository and controller
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using server.Models;
|
||||
|
||||
namespace server.Persistence.Repositories
|
||||
{
|
||||
public interface IQuoteRepository
|
||||
{
|
||||
Task<List<Quote>> GetQuotesAsync(QuoteFilter filter);
|
||||
Task<Quote> GetQuoteByIdAsync(int id);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user