public async Task AddPointAsync(Guid id, string name, Guid userId, DateTime createdAt) { var point = new MyPoint(id, name, userId, createdAt, null); await Task.WhenAll(_pointRepository.AddAssync(point), _graphRepository.AddPointAsync(point)); }