using Comal.Classes; namespace Comal.Stores { public class SupplierProductStore : BaseProductStore { protected override void AfterSave(SupplierProduct entity) { base.AfterSave(entity); //if (entity.ProductLink.UseDefaultSupplierPricing) UpdateDefaultSupplierPricing(entity); } protected override void AfterDelete(SupplierProduct entity) { base.AfterDelete(entity); // Do we actually need to do anything here? } } }