This commit is contained in:
Jamie.Rees 2016-11-07 14:46:44 +00:00
parent ac02d24d65
commit 367ca391b1
7 changed files with 160 additions and 0 deletions

View file

@ -85,5 +85,6 @@ namespace PlexRequests.Store.Repository
IEnumerable<T> Custom(Func<IDbConnection, IEnumerable<T>> func);
Task<IEnumerable<T>> CustomAsync(Func<IDbConnection, Task<IEnumerable<T>>> func);
void DeleteAll(string tableName);
Task DeleteAllAsync(string tableName);
}
}