feat(repo): IArenaTwoPickRunRepository + tests

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
gamer147
2026-05-31 10:37:42 -04:00
parent 721cd738d7
commit 2df18425c4
4 changed files with 119 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using SVSim.Database.Models;
namespace SVSim.Database.Repositories.Viewer;
public interface IArenaTwoPickRunRepository
{
Task<ViewerArenaTwoPickRun?> GetByViewerIdAsync(long viewerId);
Task UpsertAsync(ViewerArenaTwoPickRun run);
Task DeleteAsync(long viewerId);
}