コード例 #1
0
ファイル: Auto.cs プロジェクト: uffiee1/FHICT-OIS12
 public Auto(string kenteken, Brandstofsoort soortbrandstof, int kmstand)
 {
     KmStand   = kmstand;
     Kenteken  = kenteken;
     Brandstof = soortbrandstof;
 }
コード例 #2
0
ファイル: Auto.cs プロジェクト: uffiee1/FHICT-OIS12
 public Auto(string kenteken, Brandstofsoort soortbrandstof)
 {
     KmStand   = 0;
     Kenteken  = kenteken;
     Brandstof = soortbrandstof;
 }