-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPerson_View.cs
53 lines (42 loc) · 1.66 KB
/
Person_View.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace TuBL.Models
{
public class PersonIDCardViewModel
{
public int id_identityCard {get; set;}
public int? Number {get; set;}
public DateTime? ExpiryDate {get; set;}
public DateTime? IssueDate {get; set;}
public string IssuedBy {get; set;}
public int RegionIndex { get; set; }
public int MunicipalityIndex { get; set; }
public int CityIndex{ get; set; }
public int? id_city {get; set;}
public int id_ekatte { get; set; }
//[Required(ErrorMessage = TuBl.Constants.EnterAddres)]
public string Address {get; set;}
public DateTime? ValidFrom {get; set;}
public DateTime? ValidTo {get; set;}
public DateTime? Timestamp {get; set;}
public int? id_userEdit {get; set;}
public string EGN {get; set;}
public int? id_egnType { get; set; }
//[Required(ErrorMessage = TuBl.Constants.EnterBirthDate)]
public DateTime? BirthDate {get; set;}
[Required]
public int id_person {get; set;}
public int RegionBirthIndex { get; set; }
public int MunicipalityBirthIndex { get; set; }
public int CityBirthIndex { get; set; }
public int? id_cityBirth {get; set;}
public int id_ekatteBirth { get; set; }
public string PicturePath {get; set;}
public int id_module {get; set;}
public string WhatIsChanged { get; set; }
}
}