Added several missing using statements

This commit is contained in:
Kwoth
2022-03-21 13:20:26 +01:00
parent 9ade3c9537
commit 1f14c9066e
3 changed files with 12 additions and 11 deletions

View File

@@ -60,7 +60,6 @@ public class GamblingService : INService, IReadyExecutor
await using var uow = _db.GetDbContext();
await uow.CurrencyTransactions
.DeleteAsync(ct => ct.DateAdded == null || now - ct.DateAdded < days);
await uow.SaveChangesAsync();
}
catch (Exception ex)
{