-
Notifications
You must be signed in to change notification settings - Fork 0
/
DEPENDENCY INJECTION
52 lines (49 loc) · 1.29 KB
/
DEPENDENCY INJECTION
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
using System;
namespace Dependency_injection
{
class Program
{
static void Main(string[] args)
{
businessclass obj = new businessclass(new studentservice());
businessclass ob = new businessclass(new teacherservice());
}
public class businessclass
{
private Iservice iservice;
public businessclass(Iservice _iservice)
{
this.iservice = _iservice;
this.iservice.GetFirstName();
this.iservice.GetLastName();
}
}
public interface Iservice
{
void GetFirstName();
void GetLastName();
}
public class studentservice: Iservice
{
public void GetFirstName()
{
Console.WriteLine("sowmya");
}
public void GetLastName()
{
Console.WriteLine("Tellapragada");
}
}
public class teacherservice : Iservice
{
public void GetFirstName()
{
Console.WriteLine("Madhavi");
}
public void GetLastName()
{
Console.WriteLine("Gadicherla");
}
}
}
}