コード例 #1
0
 //======== delete one line book
 public static void deletOrder_line(string del)
 {
     OrderIO.deletLine_order(del);
 }
コード例 #2
0
 public static List <Order> ListAllOrders()
 {
     return(OrderIO.ListOrders());
 }
コード例 #3
0
 public static List <Order> Search_orders(string name)
 {
     return(OrderIO.SearchRecord_orders(name));
 }
コード例 #4
0
 public static List <Software> ListSoftware_order()
 {
     return(OrderIO.ListSoftware());
 }
コード例 #5
0
 public static bool processQohBook(double amount, string id)
 {
     return(OrderIO.processQoh_book(amount, id));
 }
コード例 #6
0
 public static List <Book> ListBooks_order()
 {
     return(OrderIO.ListBooks());
 }
コード例 #7
0
 public static void saveRecordSoftware(Order ord)
 {
     OrderIO.saveRecord_software(ord);
 }
コード例 #8
0
 public static void saveRecordBook(Order ord)
 {
     OrderIO.saveRecord_book(ord);
 }
コード例 #9
0
 public static List <Software> Search_OrderSoftware(string name)
 {
     return(OrderIO.SearchRecord_Software(name));
 }
コード例 #10
0
 //public static void WriteXML_List_book(Book books, string xmlmyPath_client)
 //{
 //    InventoryIO.WriteXML_List(books);
 //}
 public static List <Book> Search_orderbook(string name)
 {
     return(OrderIO.SearchRecord_book(name));
 }