-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathDip.cs
86 lines (76 loc) · 2.03 KB
/
Dip.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
82
83
84
85
86
using System;
using System.IO;
using Solid.SingleResponsibility;
namespace Solid.DependencyInversion
{
class Dip : IPrinciple
{
public string Principle()
{
return "Dependency Inversion";
}
internal class FileLogger
{
public void Handle(string error)
{
File.WriteAllText(@"C:\Error.txt", error);
}
}
// Bad: We are relying on the customer to say that we
// are using a File Logger, rather than another type of
// logger, e.g. EmailLogger.
internal class Customer
{
FileLogger logger = new FileLogger();
public void Add(Database db)
{
try
{
db.Add();
}
catch (Exception error)
{
logger.Handle(error.ToString());
}
}
}
// Good: We pass in a Logger interface to the customer
// so it doesnt know what type of logger it is
class BetterCustomer
{
private ILogger logger;
public BetterCustomer(ILogger logger)
{
this.logger = logger;
}
public void Add(Database db)
{
try
{
db.Add();
}
catch (Exception error)
{
logger.Handle(error.ToString());
}
}
}
class EmailLogger : ILogger
{
public void Handle(string error)
{
File.WriteAllText(@"C:\Error.txt", error);
}
}
interface ILogger
{
void Handle(string error);
}
// e.g. when it is used:
void UseDependencyInjectionForLogger()
{
var customer = new BetterCustomer(new EmailLogger());
customer.Add(new Database());
}
}
}