Beispiel #1
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;
 }
Beispiel #2
0
 public Document()
 {
     Type = new DocumentType();
     Person = new Person();
 }