Exemplo n.º 1
0
 public int UpdateCustomerProfile(CustomerProfile theCustomerProfile)
 {
     return(CustomerProfileIntegration.UpdateCustomerProfile(theCustomerProfile));
 }
Exemplo n.º 2
0
 public int DeleteCustomerProfile(CustomerProfile theCustomerProfile)
 {
     return(CustomerProfileIntegration.DeleteCustomerProfile(theCustomerProfile));
 }
Exemplo n.º 3
0
 public int InsertCustomerProfile(CustomerProfile theCustomerProfile)
 {
     return(CustomerProfileIntegration.InsertCustomerProfile(theCustomerProfile));
 }
Exemplo n.º 4
0
 public CustomerProfile GetCustomerProfileBySettingKeyName(int customerID, string settingKeyName, string settingKeyDescription)
 {
     return(CustomerProfileIntegration.GetCustomerProfileBySettingKeyName(customerID, settingKeyName, settingKeyDescription));
 }
Exemplo n.º 5
0
 public List <CustomerProfile> GetCustomerProfileByCustomerID(int customerID)
 {
     return(CustomerProfileIntegration.GetCustomerProfileByCustomerID(customerID));
 }
Exemplo n.º 6
0
 public CustomerProfile GetCustomersProfileByID(int customerProfileID)
 {
     return(CustomerProfileIntegration.GetCustomerProfileByID(customerProfileID));
 }
Exemplo n.º 7
0
 public List <CustomerProfile> GetCustomerProfileList(string searchText)
 {
     return(CustomerProfileIntegration.GetCustomerProfileList(searchText));
 }