Ejemplo n.º 1
0
    //protected Kunde()
    //{

    //}

    protected Kunde(string addresse, TypdesKunden type, int _kartennummer, int _pincode)
    {
        this.Addresse     = addresse;
        this.kundentyp    = type;
        this.Kartennummer = _kartennummer;
        this.PinCode      = _pincode;
    }
Ejemplo n.º 2
0
 public Kunde(string addresse, TypdesKunden type)
 {
     this.Addresse  = addresse;
     this.kundentyp = type;
 }