Update IQuoteRepository.cs

This commit is contained in:
Shikhir Arora 2017-02-13 22:31:20 -05:00 committed by GitHub
parent 91a0ee31af
commit 283fc2c216

View File

@ -8,6 +8,7 @@ namespace NadekoBot.Services.Database.Repositories
{
IEnumerable<Quote> GetAllQuotesByKeyword(ulong guildId, string keyword);
Task<Quote> GetRandomQuoteByKeywordAsync(ulong guildId, string keyword);
Task<Quote> SearchQuoteKeywordTextAsync(ulong guildId, string keyword, string text);
IEnumerable<Quote> GetGroup(ulong guildId, int skip, int take);
}
}