コード例 #1
0
ファイル: Reference.cs プロジェクト: hardstylle/MvcTables
 public void AddToCustomerDemographics(CustomerDemographic customerDemographic)
 {
     base.AddObject("CustomerDemographics", customerDemographic);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: hardstylle/MvcTables
 public static CustomerDemographic CreateCustomerDemographic(string customerTypeID)
 {
     CustomerDemographic customerDemographic = new CustomerDemographic();
     customerDemographic.CustomerTypeID = customerTypeID;
     return customerDemographic;
 }