-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
81 lines (71 loc) · 2.45 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
using Amazon.DynamoDBv2;
internal class Program
{
public static async Task CreateDepartments(
DynamoDBEmployeeRepository repository,
CancellationToken cancellationToken
)
{
if (await repository.EnsureTableIsCreated(cancellationToken) is false)
{
await repository.GenerateEmployeesInDeparment("IT", 100, cancellationToken);
await repository.GenerateEmployeesInDeparment("Sales", 100, cancellationToken);
}
}
private static async Task Main(string[] args)
{
using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(30));
var dynamoDb = new AmazonDynamoDBClient(
new AmazonDynamoDBConfig() { ServiceURL = "http://localhost:8000" }
);
var repository = new DynamoDBEmployeeRepository(dynamoDb);
await CreateDepartments(repository, cts.Token);
await UseRepository(repository, cts.Token);
}
private static async Task UseRepository(
IEmployeeRepository repository,
CancellationToken cancellationToken
)
{
Console.WriteLine("Querying employees");
var salesDepartment = await repository.QueryByDepartment(
"Sales",
"Email1",
DateTime.UtcNow,
cancellationToken
);
Console.WriteLine("Creating employee");
await repository.CreateEmployee(
new Employee(
"IT",
"Andersson",
new[] { "Software Development" },
new Metadata(DateTime.UtcNow)
),
cancellationToken
);
Console.WriteLine("Getting employee");
var employee = await repository.GetPersonById(
"IT",
cancellationToken
);
var updatedEmployee = await repository.UpdateLastName(
employee!.Department,
employee.Email,
"Sparrow",
cancellationToken
);
Console.WriteLine("Deleting employee");
await repository.DeleteEmployee(
updatedEmployee!.Department,
updatedEmployee.Email,
cancellationToken
);
Console.WriteLine($"Original: {employee}");
Console.WriteLine($"Updated: {updatedEmployee}");
foreach (var salesEmployee in salesDepartment)
Console.WriteLine($"Queried: {salesEmployee}");
}
}