-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
137 lines (110 loc) · 3.59 KB
/
index.html
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Repository Patterns in WEB API</title>
<style>
body {
background: #fff;
color: #505050;
font: 14px 'Segoe UI', tahoma, arial, helvetica, sans-serif;
margin: 20px;
padding: 0;
}
#header {
background: #efefef;
padding: 0;
}
h1 {
font-size: 48px;
font-weight: normal;
margin: 0;
padding: 0 30px;
line-height: 150px;
}
p {
font-size: 20px;
color: #fff;
background: #969696;
padding: 0 30px;
line-height: 50px;
}
.main {
padding: 5px 10px;
}
.section {
width: 30.7%;
float: left;
margin: 0 0 0 4%;
}
.section h2 {
font-size: 13px;
text-transform: uppercase;
margin: 0;
border-bottom: 1px solid silver;
padding-bottom: 12px;
margin-bottom: 8px;
}
.section.first {
margin-left: 0;
}
.section.first h2 {
font-size: 24px;
text-transform: none;
margin-bottom: 25px;
border: none;
}
.section.first li {
border-top: 1px solid silver;
padding: 8px 0;
}
.section.last {
margin-right: 0;
}
ul {
list-style: none;
padding: 0;
margin: 0;
line-height: 20px;
}
li {
padding: 4px 0;
}
a {
color: #267cb2;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<table>
<tr><td colspan="4"><div id="divActualEffort"></div></td></tr>
</table>
<div id="header">
<h2>Repository Patterns ,Dependency Injection, WEB API,WCF Services,JQuery Tutorial</h2>
<p>Congratulations! You've created a project</p>
</div>
<div id="main">
<div class="main section first">
<h4>Repository Patterns,Dependency Injection and WEB API</h4>
<h4> See below Sample Reference</h4>
<ul>
<li><a href="https://www.asp.net/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api">https://www.asp.net/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api </a></li>
</ul>
<h4> Dependency Injection (DI)</h4>
<ul>
<li> Dependency Injection (DI) is a design pattern that demonstrates how to create loosely coupled classes</li>
<li> DI is a great way to reduce tight coupling between software components</li>
<li>The Dependency Injection pattern uses a builder object to initialize objects and provide the required dependencies to the object means it allows you to "inject" a dependency from outside the class</li>
</ul>
<h4> Constructor Injection</h4>
<ul>
<li> Dependency Injection is done by supplying the DEPENDENCY through the class’s constructor when instantiating that class.</li>
</ul>
</div>
</div>
</body>
</html>