// GET: api/Buyer_Orders/5
 public IHttpActionResult Getview_Buyer_Orders(int id)
 {
     return(Ok(db.getOrders_Of_User(id)));
 }