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