Added a missing savechanges

This commit is contained in:
Kwoth
2022-03-20 12:07:06 +01:00
parent a34a86bbfa
commit eab16865cd

View File

@@ -58,6 +58,7 @@ public class CurrencyService : ICurrencyService, INService
? du.CurrencyAmount - amount ? du.CurrencyAmount - amount
: 0 : 0
}); });
await ctx.SaveChangesAsync();
return; return;
} }