implement getquotebyidasync

This commit is contained in:
StevanFreeborn
2022-06-23 16:43:17 -05:00
parent 911c199ba2
commit e459d20f54
6 changed files with 85 additions and 12 deletions
@@ -5,6 +5,6 @@ namespace server.Persistence.Repositories
public interface IQuoteRepository
{
Task<List<Quote>> GetQuotesAsync(QuoteFilter filter);
Task<Quote> GetQuoteByIdAsync(int id);
Task<Quote> GetQuoteByIdAsync(string id);
}
}