コード例 #1
0
 public void Bestel(Ober ober, string product)
 {
     if (ober == null || string.IsNullOrEmpty(product))
     {
         return;                                                // preconditie
     }
     ober.BrengBestelling(this, product);
 }
コード例 #2
0
ファイル: Klant.cs プロジェクト: Gen1a/School_Projects
 public void Bestel(Ober ober, string product)
 {
     if (ober == null || string.IsNullOrWhiteSpace(product))
     {
         return;
     }
     ober.BrengBestelling(this, product);
 }