Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Marat Pavlov
/
AlexAdapter
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
54856aa9
authored
Mar 28, 2022
by
Alex Nasyr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
temp
parent
6dc56ee3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
71 additions
and
15 deletions
SocialMinistryDataExchange/Controllers/apiController.cs
SocialMinistryDataExchange/Model/SMData.cs
SocialMinistryDataExchange/Model/SMRepository.cs
SocialMinistryDataExchange/Controllers/apiController.cs
View file @
54856aa9
...
@@ -27,6 +27,7 @@ namespace SocialMinistryDataExchange.Controllers {
...
@@ -27,6 +27,7 @@ namespace SocialMinistryDataExchange.Controllers {
rowguid_eais
=
"223322"
,
rowguid_eais
=
"223322"
,
PersonDocumentSeria
=
"V-II"
,
PersonDocumentSeria
=
"V-II"
,
PersonDocumentNumber
=
"123456"
,
PersonDocumentNumber
=
"123456"
,
PersonDocumentDate
=
DateTime
.
Parse
(
"2010-01-01"
),
PersonFamilyName
=
"Мкртчян"
,
PersonFamilyName
=
"Мкртчян"
,
PersonName
=
"Василий"
,
PersonName
=
"Василий"
,
PersonSurname
=
"Алибабаевич"
,
PersonSurname
=
"Алибабаевич"
,
...
...
SocialMinistryDataExchange/Model/SMData.cs
View file @
54856aa9
...
@@ -2,6 +2,16 @@
...
@@ -2,6 +2,16 @@
namespace
SocialMinistryDataExchange.Model
{
namespace
SocialMinistryDataExchange.Model
{
[
Flags
]
enum
PersonSearchAttributes
:
byte
{
PersonDocumentSeria
=
1
,
PersonDocumentNumber
=
2
,
PersonDocumentDate
=
4
,
PersonFamilyName
=
8
,
PersonName
=
16
,
PersonBirthday
=
32
,
}
public
class
SMData
{
public
class
SMData
{
public
SMData
()
{
}
public
SMData
()
{
}
public
string
rowguid_eais
{
get
;
set
;
}
public
string
rowguid_eais
{
get
;
set
;
}
...
@@ -23,17 +33,6 @@ namespace SocialMinistryDataExchange.Model {
...
@@ -23,17 +33,6 @@ namespace SocialMinistryDataExchange.Model {
public
string
EducationProgram
{
get
;
set
;
}
public
string
EducationProgram
{
get
;
set
;
}
public
string
EducationForm
{
get
;
set
;
}
public
string
EducationForm
{
get
;
set
;
}
}
}
[
Flags
]
enum
PersonSearchAttributes
:
byte
{
PersonDocumentSeria
=
1
,
PersonDocumentNumber
=
2
,
PersonFamilyName
=
4
,
PersonName
=
8
,
PersonBirthday
=
16
,
}
public
class
SMPersonRequest
{
public
class
SMPersonRequest
{
public
string
rowguid_eais
{
get
;
set
;
}
public
string
rowguid_eais
{
get
;
set
;
}
public
string
document_seria
{
get
;
set
;
}
public
string
document_seria
{
get
;
set
;
}
...
...
SocialMinistryDataExchange/Model/SMRepository.cs
View file @
54856aa9
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment