Exemplo n.º 1
0
 /// <summary>
 /// Without Id
 /// </summary>
 public Filial(string navn, string adresse, Postnr postnr, string telefon, string mail)
 {
     this.Navn    = navn;
     this.Adresse = adresse;
     this.Postnr  = postnr;
     this.Telefon = telefon;
     this.Mail    = mail;
 }
Exemplo n.º 2
0
 public Grund(string adresse, Postnr postnr, double tillæg, int areal, Filial filial)
 {
     this.Adresse = adresse;
     this.Postnr  = postnr;
     this.Tillæg  = tillæg;
     this.Areal   = areal;
     this.Filial  = filial;
 }
Exemplo n.º 3
0
 public Kunde(string navn, string adresse, Postnr postnr, string telefon, string mail, int id)
 {
     this.Navn    = navn;
     this.Adresse = adresse;
     this.Postnr  = postnr;
     this.Telefon = telefon;
     this.Mail    = mail;
     this.Id      = id;
 }