コード例 #1
0
 // GET: api/Commandes/5
 public IEnumerable<MyOrder> Get(int id, string nom, string prenom )
 {
     using (AWContext db = new AWContext())
     {
         return db.GetOrders(id);
     }
 }
コード例 #2
0
 // GET: api/Commandes
 public IEnumerable<MyOrder> Get()
 {
     using (AWContext db = new AWContext())
     {
         return db.GetOrders(30072);
     }
 }