├── .gitattributes
├── .gitignore
├── InterfaceAndAbstractDemo.sln
├── InterfaceAndAbstractDemo
├── Abstract
│ ├── BaseCustomerManager.cs
│ ├── ICustomerCheckService.cs
│ ├── ICustomerService.cs
│ └── IEntity.cs
├── Adapters
│ └── MernisServiceAdapter.cs
├── App.config
├── Concrete
│ ├── CustomerCheckManager.cs
│ ├── NeroCustomerManager.cs
│ └── StarbucksCustomerManager.cs
├── Connected Services
│ └── MernisServiceReference
│ │ ├── InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaResponse.datasource
│ │ ├── KPSPublic.wsdl
│ │ ├── Reference.cs
│ │ ├── Reference.svcmap
│ │ ├── configuration.svcinfo
│ │ └── configuration91.svcinfo
├── Entities
│ └── Customer.cs
├── InterfaceAndAbstractDemo.csproj
├── Program.cs
└── Properties
│ └── AssemblyInfo.cs
└── README.md
/.gitattributes:
--------------------------------------------------------------------------------
1 | ###############################################################################
2 | # Set default behavior to automatically normalize line endings.
3 | ###############################################################################
4 | * text=auto
5 |
6 | ###############################################################################
7 | # Set default behavior for command prompt diff.
8 | #
9 | # This is need for earlier builds of msysgit that does not have it on by
10 | # default for csharp files.
11 | # Note: This is only used by command line
12 | ###############################################################################
13 | #*.cs diff=csharp
14 |
15 | ###############################################################################
16 | # Set the merge driver for project and solution files
17 | #
18 | # Merging from the command prompt will add diff markers to the files if there
19 | # are conflicts (Merging from VS is not affected by the settings below, in VS
20 | # the diff markers are never inserted). Diff markers may cause the following
21 | # file extensions to fail to load in VS. An alternative would be to treat
22 | # these files as binary and thus will always conflict and require user
23 | # intervention with every merge. To do so, just uncomment the entries below
24 | ###############################################################################
25 | #*.sln merge=binary
26 | #*.csproj merge=binary
27 | #*.vbproj merge=binary
28 | #*.vcxproj merge=binary
29 | #*.vcproj merge=binary
30 | #*.dbproj merge=binary
31 | #*.fsproj merge=binary
32 | #*.lsproj merge=binary
33 | #*.wixproj merge=binary
34 | #*.modelproj merge=binary
35 | #*.sqlproj merge=binary
36 | #*.wwaproj merge=binary
37 |
38 | ###############################################################################
39 | # behavior for image files
40 | #
41 | # image files are treated as binary by default.
42 | ###############################################################################
43 | #*.jpg binary
44 | #*.png binary
45 | #*.gif binary
46 |
47 | ###############################################################################
48 | # diff behavior for common document formats
49 | #
50 | # Convert binary document formats to text before diffing them. This feature
51 | # is only available from the command line. Turn it on by uncommenting the
52 | # entries below.
53 | ###############################################################################
54 | #*.doc diff=astextplain
55 | #*.DOC diff=astextplain
56 | #*.docx diff=astextplain
57 | #*.DOCX diff=astextplain
58 | #*.dot diff=astextplain
59 | #*.DOT diff=astextplain
60 | #*.pdf diff=astextplain
61 | #*.PDF diff=astextplain
62 | #*.rtf diff=astextplain
63 | #*.RTF diff=astextplain
64 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | ## Ignore Visual Studio temporary files, build results, and
2 | ## files generated by popular Visual Studio add-ons.
3 |
4 | # User-specific files
5 | *.suo
6 | *.user
7 | *.userosscache
8 | *.sln.docstates
9 |
10 | # User-specific files (MonoDevelop/Xamarin Studio)
11 | *.userprefs
12 |
13 | # Build results
14 | [Dd]ebug/
15 | [Dd]ebugPublic/
16 | [Rr]elease/
17 | [Rr]eleases/
18 | x64/
19 | x86/
20 | bld/
21 | [Bb]in/
22 | [Oo]bj/
23 | [Ll]og/
24 |
25 | # Visual Studio 2015 cache/options directory
26 | .vs/
27 | # Uncomment if you have tasks that create the project's static files in wwwroot
28 | #wwwroot/
29 |
30 | # MSTest test Results
31 | [Tt]est[Rr]esult*/
32 | [Bb]uild[Ll]og.*
33 |
34 | # NUNIT
35 | *.VisualState.xml
36 | TestResult.xml
37 |
38 | # Build Results of an ATL Project
39 | [Dd]ebugPS/
40 | [Rr]eleasePS/
41 | dlldata.c
42 |
43 | # DNX
44 | project.lock.json
45 | project.fragment.lock.json
46 | artifacts/
47 |
48 | *_i.c
49 | *_p.c
50 | *_i.h
51 | *.ilk
52 | *.meta
53 | *.obj
54 | *.pch
55 | *.pdb
56 | *.pgc
57 | *.pgd
58 | *.rsp
59 | *.sbr
60 | *.tlb
61 | *.tli
62 | *.tlh
63 | *.tmp
64 | *.tmp_proj
65 | *.log
66 | *.vspscc
67 | *.vssscc
68 | .builds
69 | *.pidb
70 | *.svclog
71 | *.scc
72 |
73 | # Chutzpah Test files
74 | _Chutzpah*
75 |
76 | # Visual C++ cache files
77 | ipch/
78 | *.aps
79 | *.ncb
80 | *.opendb
81 | *.opensdf
82 | *.sdf
83 | *.cachefile
84 | *.VC.db
85 | *.VC.VC.opendb
86 |
87 | # Visual Studio profiler
88 | *.psess
89 | *.vsp
90 | *.vspx
91 | *.sap
92 |
93 | # TFS 2012 Local Workspace
94 | $tf/
95 |
96 | # Guidance Automation Toolkit
97 | *.gpState
98 |
99 | # ReSharper is a .NET coding add-in
100 | _ReSharper*/
101 | *.[Rr]e[Ss]harper
102 | *.DotSettings.user
103 |
104 | # JustCode is a .NET coding add-in
105 | .JustCode
106 |
107 | # TeamCity is a build add-in
108 | _TeamCity*
109 |
110 | # DotCover is a Code Coverage Tool
111 | *.dotCover
112 |
113 | # NCrunch
114 | _NCrunch_*
115 | .*crunch*.local.xml
116 | nCrunchTemp_*
117 |
118 | # MightyMoose
119 | *.mm.*
120 | AutoTest.Net/
121 |
122 | # Web workbench (sass)
123 | .sass-cache/
124 |
125 | # Installshield output folder
126 | [Ee]xpress/
127 |
128 | # DocProject is a documentation generator add-in
129 | DocProject/buildhelp/
130 | DocProject/Help/*.HxT
131 | DocProject/Help/*.HxC
132 | DocProject/Help/*.hhc
133 | DocProject/Help/*.hhk
134 | DocProject/Help/*.hhp
135 | DocProject/Help/Html2
136 | DocProject/Help/html
137 |
138 | # Click-Once directory
139 | publish/
140 |
141 | # Publish Web Output
142 | *.[Pp]ublish.xml
143 | *.azurePubxml
144 | # TODO: Comment the next line if you want to checkin your web deploy settings
145 | # but database connection strings (with potential passwords) will be unencrypted
146 | #*.pubxml
147 | *.publishproj
148 |
149 | # Microsoft Azure Web App publish settings. Comment the next line if you want to
150 | # checkin your Azure Web App publish settings, but sensitive information contained
151 | # in these scripts will be unencrypted
152 | PublishScripts/
153 |
154 | # NuGet Packages
155 | *.nupkg
156 | # The packages folder can be ignored because of Package Restore
157 | **/packages/*
158 | # except build/, which is used as an MSBuild target.
159 | !**/packages/build/
160 | # Uncomment if necessary however generally it will be regenerated when needed
161 | #!**/packages/repositories.config
162 | # NuGet v3's project.json files produces more ignoreable files
163 | *.nuget.props
164 | *.nuget.targets
165 |
166 | # Microsoft Azure Build Output
167 | csx/
168 | *.build.csdef
169 |
170 | # Microsoft Azure Emulator
171 | ecf/
172 | rcf/
173 |
174 | # Windows Store app package directories and files
175 | AppPackages/
176 | BundleArtifacts/
177 | Package.StoreAssociation.xml
178 | _pkginfo.txt
179 |
180 | # Visual Studio cache files
181 | # files ending in .cache can be ignored
182 | *.[Cc]ache
183 | # but keep track of directories ending in .cache
184 | !*.[Cc]ache/
185 |
186 | # Others
187 | ClientBin/
188 | ~$*
189 | *~
190 | *.dbmdl
191 | *.dbproj.schemaview
192 | *.jfm
193 | *.pfx
194 | *.publishsettings
195 | node_modules/
196 | orleans.codegen.cs
197 |
198 | # Since there are multiple workflows, uncomment next line to ignore bower_components
199 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
200 | #bower_components/
201 |
202 | # RIA/Silverlight projects
203 | Generated_Code/
204 |
205 | # Backup & report files from converting an old project file
206 | # to a newer Visual Studio version. Backup files are not needed,
207 | # because we have git ;-)
208 | _UpgradeReport_Files/
209 | Backup*/
210 | UpgradeLog*.XML
211 | UpgradeLog*.htm
212 |
213 | # SQL Server files
214 | *.mdf
215 | *.ldf
216 |
217 | # Business Intelligence projects
218 | *.rdl.data
219 | *.bim.layout
220 | *.bim_*.settings
221 |
222 | # Microsoft Fakes
223 | FakesAssemblies/
224 |
225 | # GhostDoc plugin setting file
226 | *.GhostDoc.xml
227 |
228 | # Node.js Tools for Visual Studio
229 | .ntvs_analysis.dat
230 |
231 | # Visual Studio 6 build log
232 | *.plg
233 |
234 | # Visual Studio 6 workspace options file
235 | *.opt
236 |
237 | # Visual Studio LightSwitch build output
238 | **/*.HTMLClient/GeneratedArtifacts
239 | **/*.DesktopClient/GeneratedArtifacts
240 | **/*.DesktopClient/ModelManifest.xml
241 | **/*.Server/GeneratedArtifacts
242 | **/*.Server/ModelManifest.xml
243 | _Pvt_Extensions
244 |
245 | # Paket dependency manager
246 | .paket/paket.exe
247 | paket-files/
248 |
249 | # FAKE - F# Make
250 | .fake/
251 |
252 | # JetBrains Rider
253 | .idea/
254 | *.sln.iml
255 |
256 | # CodeRush
257 | .cr/
258 |
259 | # Python Tools for Visual Studio (PTVS)
260 | __pycache__/
261 | *.pyc
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 15
4 | VisualStudioVersion = 15.0.28307.168
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InterfaceAndAbstractDemo", "InterfaceAndAbstractDemo\InterfaceAndAbstractDemo.csproj", "{D5F15656-2F7F-41DE-9D03-624F2C9D9C63}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|Any CPU = Debug|Any CPU
11 | Release|Any CPU = Release|Any CPU
12 | EndGlobalSection
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 | {D5F15656-2F7F-41DE-9D03-624F2C9D9C63}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {D5F15656-2F7F-41DE-9D03-624F2C9D9C63}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {D5F15656-2F7F-41DE-9D03-624F2C9D9C63}.Release|Any CPU.ActiveCfg = Release|Any CPU
17 | {D5F15656-2F7F-41DE-9D03-624F2C9D9C63}.Release|Any CPU.Build.0 = Release|Any CPU
18 | EndGlobalSection
19 | GlobalSection(SolutionProperties) = preSolution
20 | HideSolutionNode = FALSE
21 | EndGlobalSection
22 | GlobalSection(ExtensibilityGlobals) = postSolution
23 | SolutionGuid = {D3068D53-EA55-4E04-A684-34C28CDD680A}
24 | EndGlobalSection
25 | EndGlobal
26 |
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo/Abstract/BaseCustomerManager.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using InterfaceAndAbstractDemo.Entities;
3 |
4 | namespace InterfaceAndAbstractDemo.Abstract
5 | {
6 | public abstract class BaseCustomerManager:ICustomerService
7 | {
8 | public virtual void Save(Customer customer)
9 | {
10 | Console.WriteLine("Saved to db : " + customer.FirstName);
11 | }
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo/Abstract/ICustomerCheckService.cs:
--------------------------------------------------------------------------------
1 | using InterfaceAndAbstractDemo.Entities;
2 |
3 | namespace InterfaceAndAbstractDemo.Abstract
4 | {
5 | public interface ICustomerCheckService
6 | {
7 | bool CheckIfRealPerson(Customer customer);
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo/Abstract/ICustomerService.cs:
--------------------------------------------------------------------------------
1 | using InterfaceAndAbstractDemo.Entities;
2 |
3 | namespace InterfaceAndAbstractDemo.Abstract
4 | {
5 | public interface ICustomerService
6 | {
7 | void Save(Customer customer);
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo/Abstract/IEntity.cs:
--------------------------------------------------------------------------------
1 | namespace InterfaceAndAbstractDemo.Abstract
2 | {
3 | public interface IEntity
4 | {
5 | }
6 | }
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo/Adapters/MernisServiceAdapter.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using InterfaceAndAbstractDemo.Abstract;
3 | using InterfaceAndAbstractDemo.Entities;
4 | using InterfaceAndAbstractDemo.MernisServiceReference;
5 |
6 | namespace InterfaceAndAbstractDemo.Adapters
7 | {
8 | public class MernisServiceAdapter:ICustomerCheckService
9 | {
10 | public bool CheckIfRealPerson(Customer customer)
11 | {
12 | KPSPublicSoapClient client =new KPSPublicSoapClient();
13 | return client.TCKimlikNoDogrula(Convert.ToInt64(customer.NationalityId), customer.FirstName.ToUpper(),
14 | customer.LastName.ToUpper(), customer.DateOfBirth.Year);
15 | }
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo/App.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo/Concrete/CustomerCheckManager.cs:
--------------------------------------------------------------------------------
1 | using InterfaceAndAbstractDemo.Abstract;
2 | using InterfaceAndAbstractDemo.Entities;
3 |
4 | namespace InterfaceAndAbstractDemo.Concrete
5 | {
6 | public class CustomerCheckManager:ICustomerCheckService
7 | {
8 | public bool CheckIfRealPerson(Customer customer)
9 | {
10 | return true;
11 | }
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo/Concrete/NeroCustomerManager.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using InterfaceAndAbstractDemo.Abstract;
3 | using InterfaceAndAbstractDemo.Entities;
4 |
5 | namespace InterfaceAndAbstractDemo.Concrete
6 | {
7 | public class NeroCustomerManager:BaseCustomerManager
8 | {
9 | private ICustomerCheckService _customerCheckService;
10 |
11 | public NeroCustomerManager(ICustomerCheckService customerCheckService)
12 | {
13 | _customerCheckService = customerCheckService;
14 | }
15 |
16 | public override void Save(Customer customer)
17 | {
18 | if (_customerCheckService.CheckIfRealPerson(customer))
19 | {
20 | base.Save(customer);
21 | }
22 | else
23 | {
24 | throw new Exception("Not a valid person");
25 | }
26 | }
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo/Concrete/StarbucksCustomerManager.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using InterfaceAndAbstractDemo.Abstract;
3 | using InterfaceAndAbstractDemo.Entities;
4 |
5 | namespace InterfaceAndAbstractDemo.Concrete
6 | {
7 | public class StarbucksCustomerManager : BaseCustomerManager
8 | {
9 | private ICustomerCheckService _customerCheckService;
10 |
11 | public StarbucksCustomerManager(ICustomerCheckService customerCheckService)
12 | {
13 | _customerCheckService = customerCheckService;
14 | }
15 |
16 | public override void Save(Customer customer)
17 | {
18 | if (_customerCheckService.CheckIfRealPerson(customer))
19 | {
20 | base.Save(customer);
21 | }
22 | else
23 | {
24 | throw new Exception("Not a valid person");
25 | }
26 |
27 | }
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo/Connected Services/MernisServiceReference/InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaResponse.datasource:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 | InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaResponse, Connected Services.MernisServiceReference.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
10 |
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo/Connected Services/MernisServiceReference/KPSPublic.wsdl:
--------------------------------------------------------------------------------
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 |
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo/Connected Services/MernisServiceReference/Reference.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | // Runtime Version:4.0.30319.42000
5 | //
6 | // Changes to this file may cause incorrect behavior and will be lost if
7 | // the code is regenerated.
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | namespace InterfaceAndAbstractDemo.MernisServiceReference {
12 |
13 |
14 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
15 | [System.ServiceModel.ServiceContractAttribute(Namespace="http://tckimlik.nvi.gov.tr/WS", ConfigurationName="MernisServiceReference.KPSPublicSoap")]
16 | public interface KPSPublicSoap {
17 |
18 | // CODEGEN: Generating message contract since element name Ad from namespace http://tckimlik.nvi.gov.tr/WS is not marked nillable
19 | [System.ServiceModel.OperationContractAttribute(Action="http://tckimlik.nvi.gov.tr/WS/TCKimlikNoDogrula", ReplyAction="*")]
20 | InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaResponse TCKimlikNoDogrula(InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaRequest request);
21 |
22 | [System.ServiceModel.OperationContractAttribute(Action="http://tckimlik.nvi.gov.tr/WS/TCKimlikNoDogrula", ReplyAction="*")]
23 | System.Threading.Tasks.Task TCKimlikNoDogrulaAsync(InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaRequest request);
24 | }
25 |
26 | [System.Diagnostics.DebuggerStepThroughAttribute()]
27 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
28 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
29 | [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
30 | public partial class TCKimlikNoDogrulaRequest {
31 |
32 | [System.ServiceModel.MessageBodyMemberAttribute(Name="TCKimlikNoDogrula", Namespace="http://tckimlik.nvi.gov.tr/WS", Order=0)]
33 | public InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaRequestBody Body;
34 |
35 | public TCKimlikNoDogrulaRequest() {
36 | }
37 |
38 | public TCKimlikNoDogrulaRequest(InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaRequestBody Body) {
39 | this.Body = Body;
40 | }
41 | }
42 |
43 | [System.Diagnostics.DebuggerStepThroughAttribute()]
44 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
45 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
46 | [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tckimlik.nvi.gov.tr/WS")]
47 | public partial class TCKimlikNoDogrulaRequestBody {
48 |
49 | [System.Runtime.Serialization.DataMemberAttribute(Order=0)]
50 | public long TCKimlikNo;
51 |
52 | [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=1)]
53 | public string Ad;
54 |
55 | [System.Runtime.Serialization.DataMemberAttribute(EmitDefaultValue=false, Order=2)]
56 | public string Soyad;
57 |
58 | [System.Runtime.Serialization.DataMemberAttribute(Order=3)]
59 | public int DogumYili;
60 |
61 | public TCKimlikNoDogrulaRequestBody() {
62 | }
63 |
64 | public TCKimlikNoDogrulaRequestBody(long TCKimlikNo, string Ad, string Soyad, int DogumYili) {
65 | this.TCKimlikNo = TCKimlikNo;
66 | this.Ad = Ad;
67 | this.Soyad = Soyad;
68 | this.DogumYili = DogumYili;
69 | }
70 | }
71 |
72 | [System.Diagnostics.DebuggerStepThroughAttribute()]
73 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
74 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
75 | [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
76 | public partial class TCKimlikNoDogrulaResponse {
77 |
78 | [System.ServiceModel.MessageBodyMemberAttribute(Name="TCKimlikNoDogrulaResponse", Namespace="http://tckimlik.nvi.gov.tr/WS", Order=0)]
79 | public InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaResponseBody Body;
80 |
81 | public TCKimlikNoDogrulaResponse() {
82 | }
83 |
84 | public TCKimlikNoDogrulaResponse(InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaResponseBody Body) {
85 | this.Body = Body;
86 | }
87 | }
88 |
89 | [System.Diagnostics.DebuggerStepThroughAttribute()]
90 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
91 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
92 | [System.Runtime.Serialization.DataContractAttribute(Namespace="http://tckimlik.nvi.gov.tr/WS")]
93 | public partial class TCKimlikNoDogrulaResponseBody {
94 |
95 | [System.Runtime.Serialization.DataMemberAttribute(Order=0)]
96 | public bool TCKimlikNoDogrulaResult;
97 |
98 | public TCKimlikNoDogrulaResponseBody() {
99 | }
100 |
101 | public TCKimlikNoDogrulaResponseBody(bool TCKimlikNoDogrulaResult) {
102 | this.TCKimlikNoDogrulaResult = TCKimlikNoDogrulaResult;
103 | }
104 | }
105 |
106 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
107 | public interface KPSPublicSoapChannel : InterfaceAndAbstractDemo.MernisServiceReference.KPSPublicSoap, System.ServiceModel.IClientChannel {
108 | }
109 |
110 | [System.Diagnostics.DebuggerStepThroughAttribute()]
111 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
112 | public partial class KPSPublicSoapClient : System.ServiceModel.ClientBase, InterfaceAndAbstractDemo.MernisServiceReference.KPSPublicSoap {
113 |
114 | public KPSPublicSoapClient() {
115 | }
116 |
117 | public KPSPublicSoapClient(string endpointConfigurationName) :
118 | base(endpointConfigurationName) {
119 | }
120 |
121 | public KPSPublicSoapClient(string endpointConfigurationName, string remoteAddress) :
122 | base(endpointConfigurationName, remoteAddress) {
123 | }
124 |
125 | public KPSPublicSoapClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
126 | base(endpointConfigurationName, remoteAddress) {
127 | }
128 |
129 | public KPSPublicSoapClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
130 | base(binding, remoteAddress) {
131 | }
132 |
133 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
134 | InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaResponse InterfaceAndAbstractDemo.MernisServiceReference.KPSPublicSoap.TCKimlikNoDogrula(InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaRequest request) {
135 | return base.Channel.TCKimlikNoDogrula(request);
136 | }
137 |
138 | public bool TCKimlikNoDogrula(long TCKimlikNo, string Ad, string Soyad, int DogumYili) {
139 | InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaRequest inValue = new InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaRequest();
140 | inValue.Body = new InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaRequestBody();
141 | inValue.Body.TCKimlikNo = TCKimlikNo;
142 | inValue.Body.Ad = Ad;
143 | inValue.Body.Soyad = Soyad;
144 | inValue.Body.DogumYili = DogumYili;
145 | InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaResponse retVal = ((InterfaceAndAbstractDemo.MernisServiceReference.KPSPublicSoap)(this)).TCKimlikNoDogrula(inValue);
146 | return retVal.Body.TCKimlikNoDogrulaResult;
147 | }
148 |
149 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
150 | System.Threading.Tasks.Task InterfaceAndAbstractDemo.MernisServiceReference.KPSPublicSoap.TCKimlikNoDogrulaAsync(InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaRequest request) {
151 | return base.Channel.TCKimlikNoDogrulaAsync(request);
152 | }
153 |
154 | public System.Threading.Tasks.Task TCKimlikNoDogrulaAsync(long TCKimlikNo, string Ad, string Soyad, int DogumYili) {
155 | InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaRequest inValue = new InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaRequest();
156 | inValue.Body = new InterfaceAndAbstractDemo.MernisServiceReference.TCKimlikNoDogrulaRequestBody();
157 | inValue.Body.TCKimlikNo = TCKimlikNo;
158 | inValue.Body.Ad = Ad;
159 | inValue.Body.Soyad = Soyad;
160 | inValue.Body.DogumYili = DogumYili;
161 | return ((InterfaceAndAbstractDemo.MernisServiceReference.KPSPublicSoap)(this)).TCKimlikNoDogrulaAsync(inValue);
162 | }
163 | }
164 | }
165 |
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo/Connected Services/MernisServiceReference/Reference.svcmap:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | false
5 | true
6 | true
7 |
8 | false
9 | false
10 | false
11 |
12 |
13 | true
14 | Auto
15 | true
16 | true
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo/Connected Services/MernisServiceReference/configuration.svcinfo:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo/Connected Services/MernisServiceReference/configuration91.svcinfo:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | KPSPublicSoap
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 | StrongWildcard
29 |
30 |
31 |
32 |
33 |
34 | 65536
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 | System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement
44 |
45 |
46 | 0
47 |
48 |
49 | 0
50 |
51 |
52 | 0
53 |
54 |
55 | 0
56 |
57 |
58 | 0
59 |
60 |
61 | System.Text.UTF8Encoding
62 |
63 |
64 | Buffered
65 |
66 |
67 |
68 |
69 |
70 | Text
71 |
72 |
73 | System.ServiceModel.Configuration.BasicHttpSecurityElement
74 |
75 |
76 | Transport
77 |
78 |
79 | System.ServiceModel.Configuration.HttpTransportSecurityElement
80 |
81 |
82 | None
83 |
84 |
85 | None
86 |
87 |
88 | System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement
89 |
90 |
91 | Never
92 |
93 |
94 | TransportSelected
95 |
96 |
97 | (Collection)
98 |
99 |
100 |
101 |
102 |
103 | System.ServiceModel.Configuration.BasicHttpMessageSecurityElement
104 |
105 |
106 | UserName
107 |
108 |
109 | Default
110 |
111 |
112 |
113 |
114 |
115 |
116 | KPSPublicSoap1
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 | StrongWildcard
138 |
139 |
140 |
141 |
142 |
143 | 65536
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 | System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement
153 |
154 |
155 | 0
156 |
157 |
158 | 0
159 |
160 |
161 | 0
162 |
163 |
164 | 0
165 |
166 |
167 | 0
168 |
169 |
170 | System.Text.UTF8Encoding
171 |
172 |
173 | Buffered
174 |
175 |
176 |
177 |
178 |
179 | Text
180 |
181 |
182 | System.ServiceModel.Configuration.BasicHttpSecurityElement
183 |
184 |
185 | None
186 |
187 |
188 | System.ServiceModel.Configuration.HttpTransportSecurityElement
189 |
190 |
191 | None
192 |
193 |
194 | None
195 |
196 |
197 | System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement
198 |
199 |
200 | Never
201 |
202 |
203 | TransportSelected
204 |
205 |
206 | (Collection)
207 |
208 |
209 |
210 |
211 |
212 | System.ServiceModel.Configuration.BasicHttpMessageSecurityElement
213 |
214 |
215 | UserName
216 |
217 |
218 | Default
219 |
220 |
221 |
222 |
223 |
224 |
225 |
226 |
227 | https://tckimlik.nvi.gov.tr/Service/KPSPublic.asmx
228 |
229 |
230 |
231 |
232 |
233 | basicHttpBinding
234 |
235 |
236 | KPSPublicSoap
237 |
238 |
239 | MernisServiceReference.KPSPublicSoap
240 |
241 |
242 | System.ServiceModel.Configuration.AddressHeaderCollectionElement
243 |
244 |
245 | <Header />
246 |
247 |
248 | System.ServiceModel.Configuration.IdentityElement
249 |
250 |
251 | System.ServiceModel.Configuration.UserPrincipalNameElement
252 |
253 |
254 |
255 |
256 |
257 | System.ServiceModel.Configuration.ServicePrincipalNameElement
258 |
259 |
260 |
261 |
262 |
263 | System.ServiceModel.Configuration.DnsElement
264 |
265 |
266 |
267 |
268 |
269 | System.ServiceModel.Configuration.RsaElement
270 |
271 |
272 |
273 |
274 |
275 | System.ServiceModel.Configuration.CertificateElement
276 |
277 |
278 |
279 |
280 |
281 | System.ServiceModel.Configuration.CertificateReferenceElement
282 |
283 |
284 | My
285 |
286 |
287 | LocalMachine
288 |
289 |
290 | FindBySubjectDistinguishedName
291 |
292 |
293 |
294 |
295 |
296 | False
297 |
298 |
299 | KPSPublicSoap
300 |
301 |
302 |
303 |
304 |
305 |
306 |
307 |
308 |
309 |
310 |
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo/Entities/Customer.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using InterfaceAndAbstractDemo.Abstract;
3 |
4 | namespace InterfaceAndAbstractDemo.Entities
5 | {
6 | public class Customer:IEntity
7 | {
8 | public int Id { get; set; }
9 | public string FirstName { get; set; }
10 | public string LastName { get; set; }
11 | public DateTime DateOfBirth { get; set; }
12 | public string NationalityId { get; set; }
13 |
14 | }
15 | }
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo/InterfaceAndAbstractDemo.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | AnyCPU
7 | {D5F15656-2F7F-41DE-9D03-624F2C9D9C63}
8 | Exe
9 | InterfaceAndAbstractDemo
10 | InterfaceAndAbstractDemo
11 | v4.6.1
12 | 512
13 | true
14 | true
15 |
16 |
17 | AnyCPU
18 | true
19 | full
20 | false
21 | bin\Debug\
22 | DEBUG;TRACE
23 | prompt
24 | 4
25 |
26 |
27 | AnyCPU
28 | pdbonly
29 | true
30 | bin\Release\
31 | TRACE
32 | prompt
33 | 4
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 | True
58 | True
59 | Reference.svcmap
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 | Reference.svcmap
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 | WCF Proxy Generator
87 | Reference.cs
88 |
89 |
90 |
91 |
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using InterfaceAndAbstractDemo.Abstract;
7 | using InterfaceAndAbstractDemo.Adapters;
8 | using InterfaceAndAbstractDemo.Concrete;
9 | using InterfaceAndAbstractDemo.Entities;
10 |
11 | namespace InterfaceAndAbstractDemo
12 | {
13 | class Program
14 | {
15 | static void Main(string[] args)
16 | {
17 | BaseCustomerManager customerManager = new NeroCustomerManager(new MernisServiceAdapter());
18 | customerManager.Save(new Customer { DateOfBirth = new DateTime(1985, 1, 6), FirstName = "Engin", LastName = "Demiroğ", NationalityId = "" });
19 | Console.ReadLine();
20 | }
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/InterfaceAndAbstractDemo/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // General Information about an assembly is controlled through the following
6 | // set of attributes. Change these attribute values to modify the information
7 | // associated with an assembly.
8 | [assembly: AssemblyTitle("InterfaceAndAbstractDemo")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("InterfaceAndAbstractDemo")]
13 | [assembly: AssemblyCopyright("Copyright © 2018")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // Setting ComVisible to false makes the types in this assembly not visible
18 | // to COM components. If you need to access a type in this assembly from
19 | // COM, set the ComVisible attribute to true on that type.
20 | [assembly: ComVisible(false)]
21 |
22 | // The following GUID is for the ID of the typelib if this project is exposed to COM
23 | [assembly: Guid("d5f15656-2f7f-41de-9d03-624f2c9d9c63")]
24 |
25 | // Version information for an assembly consists of the following four values:
26 | //
27 | // Major Version
28 | // Minor Version
29 | // Build Number
30 | // Revision
31 | //
32 | // You can specify all the values or you can default the Build and Revision Numbers
33 | // by using the '*' as shown below:
34 | // [assembly: AssemblyVersion("1.0.*")]
35 | [assembly: AssemblyVersion("1.0.0.0")]
36 | [assembly: AssemblyFileVersion("1.0.0.0")]
37 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # InterfaceAndAbstractDemo
2 |
3 | YouTube Canlı yayını kodlarıdır.
4 | https://www.youtube.com/watch?v=6VYDltTF2b4
5 |
6 | Uygulamanın çalışması için Program.cs içinde kendi bilgilerinizi vermeniz gerekmektedir.
7 |
--------------------------------------------------------------------------------