-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathProgram.cs
More file actions
31 lines (20 loc) · 791 Bytes
/
Program.cs
File metadata and controls
31 lines (20 loc) · 791 Bytes
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
#region AbstractFactory
IDbFactory factory = new AccessFactory();
var userRepo = factory.CreateUserRepo();
userRepo.Insert(null);
factory = new SqlServerFactory();
userRepo = factory.CreateUserRepo();
userRepo.Insert(null);
#endregion AbstractFactory
#region AbstractFactory + Reflection
var departmentRepo = DataAccess.CreateDepartmentRepo();
departmentRepo.CreateDepartment(null);
#endregion AbstractFactory + Reflection
#region AbstractFactory + DependencyInjection
using var services = new ServiceCollection()
.AddSingleton<IDbFactory, SqlServerFactory>()
.BuildServiceProvider();
var dbFactory = services.GetRequiredService<IDbFactory>();
dbFactory.CreateDepartmentRepo().CreateDepartment(null);
#endregion AbstractFactory + DependencyInjection
Console.ReadLine();