コード例 #1
0
ファイル: BL_imp.cs プロジェクト: tNisenbom/Project-in-.NET
 public Dish GetDish(int code)
 {
     if (code < 0)
     {
         throw new Exception("the code must be positiv");
     }
     return(dal.GetDish(code));
 }