コード例 #1
0
ファイル: Reference.cs プロジェクト: hardstylle/MvcTables
 public static Sales_Totals_by_Amount CreateSales_Totals_by_Amount(int orderID, string companyName)
 {
     Sales_Totals_by_Amount sales_Totals_by_Amount = new Sales_Totals_by_Amount();
     sales_Totals_by_Amount.OrderID = orderID;
     sales_Totals_by_Amount.CompanyName = companyName;
     return sales_Totals_by_Amount;
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: hardstylle/MvcTables
 public void AddToSales_Totals_by_Amounts(Sales_Totals_by_Amount sales_Totals_by_Amount)
 {
     base.AddObject("Sales_Totals_by_Amounts", sales_Totals_by_Amount);
 }