public class OrderDao
{
     public List<Orders> GetOrderByUserID(int userid)
     {
         throw new NotImplementedException();
     }
     public List<Orders> GetOrderByProductID(int productID)
     {
         throw new NotImplementedException();
     }
}