(IDbContext db)
| 15 | private readonly IDbContext _db; |
| 16 | |
| 17 | public DatabaseCache(IDbContext db) |
| 18 | { |
| 19 | _db = db ?? throw new ArgumentNullException(nameof(db)); |
| 20 | } |
| 21 | |
| 22 | public async Task<string?> Get(string key) |
| 23 | { |
nothing calls this directly
no outgoing calls
no test coverage detected