public void SalvarAlteracoes() { while (AcoesPrevias.Any()) { AcoesPrevias.Dequeue().Invoke(); } _context.SaveChanges(); while (AcoesPosteriores.Any()) { AcoesPosteriores.Dequeue().Invoke(); } }
public async Task SalvarAlteracoes() { while (AcoesPrevias.Any()) { AcoesPrevias.Dequeue().Invoke(); } await _context.SaveChangesAsync(); while (AcoesPosteriores.Any()) { AcoesPosteriores.Dequeue().Invoke(); } }