Пример #1
0
 public void AddParticipant(Person person)
 {
     var p = new Participant();
     p.Person = person;
     p.Regist = this;
     _list.Add(p);
 }
Пример #2
0
 public BiometricType(Byte[] image, String name, int id, Person person)
 {
     data = image;
     Name = name;
     Id = id;
     Person = person;
 }
Пример #3
0
 public Document(int id, DocumentType type, Person person, String s, DateTime emission, DateTime expiration,
     String emissionLocal)
 {
     this.id = id;
     Type = type;
     Person = person;
     code = s;
     emission_date = emission;
     expiration_date = expiration;
     emission_local = emissionLocal;
 }
Пример #4
0
 public Document()
 {
     Type = new DocumentType();
     Person = new Person();
 }
Пример #5
0
 public BiometricType()
 {
     Person = new Person();
     // TODO: Complete member initialization
 }