public void UpdateCuContactPerson(CuContactPersonEntity entity) { if (entity.IsDefault == true) { using (var ts = new TransactionScope()) { ClearDefault(entity.CuId); entity.Update(); ts.Complete(); } } else { entity.Update(); } }
public void DeleteCuContactPerson(int cpId) { CuContactPersonEntity entity = new CuContactPersonEntity() {CpId = cpId, DeleteFlag = true}; entity.Update(); }