Beispiel #1
0
        public Customer(int id, string a, string b, string c)
        {
            Customer_ID = id;
            First_Name  = a;
            Last_Name   = b;
            Email       = c;

            OrderHistory = SQLiteDataAccess.GetOrderHistoryById(Customer_ID);
        }
 public void LoadOrderList()
 {
     orders = SQLiteDataAccess.GetOrderHistoryById(cust.Customer_ID);
     WireUpOrderList(orders);
 }