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