public void AddParticipant(Person person) { var p = new Participant(); p.Person = person; p.Regist = this; _list.Add(p); }
public BiometricType(Byte[] image, String name, int id, Person person) { data = image; Name = name; Id = id; Person = person; }
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; }
public Document() { Type = new DocumentType(); Person = new Person(); }
public BiometricType() { Person = new Person(); // TODO: Complete member initialization }