Welcome to the navigation

Aliqua, ad ut ut tempor duis dolor in sunt ullamco dolore nisi aliquip commodo et cupidatat lorem esse fugiat id magna dolore quis non eu. Aliqua, laboris do amet, veniam, voluptate mollit lorem duis dolore non commodo dolor fugiat tempor ea labore nulla deserunt nostrud velit quis magna consequat, in

Yeah, this will be replaced... But please enjoy the search!

Deleting a Contact (Customer) from Mediachase / EPiCommerce programmatically

This is a somewhat undocumented function but if you are familiar with the class BusinessManager in the Mediachase.BusinessFoundation.Data.Business namespace things become quite easy. To demonstrate this I created a customer called Test Testson

Snippet

To remove this customer contact programmatically with c# the following code is required

// Fetch the user
Mediachase.Commerce.Customers.CustomerContext customerContext = new Mediachase.Commerce.Customers.CustomerContext();
Mediachase.Commerce.Customers.CustomerContact testTestson = customerContext.GetContactById(new Guid("1c8279d8-85bd-4063-a018-a627f98c99cb"));

// Delete
Mediachase.BusinessFoundation.Data.Business.BusinessManager.Delete(testTestson);