Example #1
0
 public Order GetOrder(int code)
 {
     if (code < 0)
     {
         throw new Exception("the code must be positiv");
     }
     return(dal.GetOrder(code));
 }