Skip to content

Commit 0baa01b

Browse files
committed
First Initiallize of REST
1 parent 6937e0c commit 0baa01b

66 files changed

Lines changed: 39863 additions & 1 deletion

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 168 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,168 @@
1+
#################
2+
## Visual Studio
3+
#################
4+
5+
## Ignore Visual Studio temporary files, build results, and
6+
## files generated by popular Visual Studio add-ons.
7+
8+
# User-specific files
9+
*.suo
10+
*.user
11+
*.sln.docstates
12+
13+
# Build results
14+
15+
.vs/
16+
[Dd]ebug/
17+
[Rr]elease/
18+
x64/
19+
[Bb]in/
20+
[Oo]bj/
21+
22+
# Build scripts folder
23+
[Aa]pp[Bb]uild/
24+
[Oo]ut/
25+
26+
# Visual Studio Code files
27+
.vscode/
28+
29+
# MSTest test Results
30+
[Tt]est[Rr]esult*/
31+
[Bb]uild[Ll]og.*
32+
33+
*_i.c
34+
*_p.c
35+
*.ilk
36+
*.meta
37+
*.obj
38+
*.pch
39+
*.pdb
40+
*.pgc
41+
*.pgd
42+
*.rsp
43+
*.sbr
44+
*.tlb
45+
*.tli
46+
*.tlh
47+
*.tmp
48+
*.tmp_proj
49+
*.log
50+
*.vspscc
51+
*.vssscc
52+
.builds
53+
*.pidb
54+
*.log
55+
*.scc
56+
57+
# Visual C++ cache files
58+
ipch/
59+
*.aps
60+
*.ncb
61+
*.opensdf
62+
*.sdf
63+
*.cachefile
64+
65+
# Visual Studio profiler
66+
*.psess
67+
*.vsp
68+
*.vspx
69+
70+
# Guidance Automation Toolkit
71+
*.gpState
72+
73+
# ReSharper is a .NET coding add-in
74+
_ReSharper*/
75+
*.[Rr]e[Ss]harper
76+
77+
# TeamCity is a build add-in
78+
_TeamCity*
79+
80+
# DotCover is a Code Coverage Tool
81+
*.dotCover
82+
83+
# NCrunch
84+
*.ncrunch*
85+
.*crunch*.local.xml
86+
87+
# Installshield output folder
88+
[Ee]xpress/
89+
90+
# DocProject is a documentation generator add-in
91+
DocProject/buildhelp/
92+
DocProject/Help/*.HxT
93+
DocProject/Help/*.HxC
94+
DocProject/Help/*.hhc
95+
DocProject/Help/*.hhk
96+
DocProject/Help/*.hhp
97+
DocProject/Help/Html2
98+
DocProject/Help/html
99+
100+
# Click-Once directory
101+
publish/
102+
103+
# Publish Web Output
104+
*.Publish.xml
105+
*.pubxml
106+
107+
# NuGet Packages Directory
108+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
109+
#packages/
110+
111+
# Windows Azure Build Output
112+
csx
113+
*.build.csdef
114+
115+
# Windows Store app package directory
116+
AppPackages/
117+
118+
# Others
119+
sql/
120+
*.Cache
121+
ClientBin/
122+
[Ss]tyle[Cc]op.*
123+
~$*
124+
*~
125+
*.dbmdl
126+
*.[Pp]ublish.xml
127+
*.pfx
128+
*.publishsettings
129+
130+
# RIA/Silverlight projects
131+
Generated_Code/
132+
133+
# Backup & report files from converting an old project file to a newer
134+
# Visual Studio version. Backup files are not needed, because we have git ;-)
135+
_UpgradeReport_Files/
136+
Backup*/
137+
UpgradeLog*.XML
138+
UpgradeLog*.htm
139+
140+
# SQL Server files
141+
App_Data/*.mdf
142+
App_Data/*.ldf
143+
144+
#############
145+
## Windows detritus
146+
#############
147+
148+
# Windows image file caches
149+
Thumbs.db
150+
ehthumbs.db
151+
152+
# Folder config file
153+
Desktop.ini
154+
155+
# Recycle Bin used on file shares
156+
$RECYCLE.BIN/
157+
158+
# Mac crap
159+
.DS_Store
160+
161+
162+
#######################
163+
## nopCommerce specific
164+
###########
165+
glob:*.user
166+
*.patch
167+
*.hg
168+
packages/*

App_WebReferences/Zarinpal/PaymentGatewayImplementationService.wsdl renamed to Method_1_SOAP/App_WebReferences/Zarinpal/PaymentGatewayImplementationService.wsdl

File renamed without changes.
File renamed without changes.

App_WebReferences/Zarinpal/configuration.svcinfo renamed to Method_1_SOAP/App_WebReferences/Zarinpal/configuration.svcinfo

File renamed without changes.

App_WebReferences/Zarinpal/configuration91.svcinfo renamed to Method_1_SOAP/App_WebReferences/Zarinpal/configuration91.svcinfo

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)