/// <summary>Detaches this instance from the entity specified so it's no longer an associated entity</summary> /// <param name="entity">The related entity to detach from</param> private void Detach_SalesTerritoryHistories(SalesTerritoryHistory entity) { this.SendPropertyChanging("SalesTerritoryHistories"); entity.SalesPerson = null; }
/// <summary>Detaches this instance from the entity specified so it's no longer an associated entity</summary> /// <param name="entity">The related entity to detach from</param> private void Detach_SalesTerritoryHistories(SalesTerritoryHistory entity) { this.SendPropertyChanging("SalesTerritoryHistories"); entity.SalesTerritory = null; }
/// <summary>Attaches this instance to the entity specified as an associated entity</summary> /// <param name="entity">The related entity to attach to</param> private void Attach_SalesTerritoryHistories(SalesTerritoryHistory entity) { this.SendPropertyChanging("SalesTerritoryHistories"); entity.SalesTerritory = this; }
/// <summary>Attaches this instance to the entity specified as an associated entity</summary> /// <param name="entity">The related entity to attach to</param> private void Attach_SalesTerritoryHistories(SalesTerritoryHistory entity) { this.SendPropertyChanging("SalesTerritoryHistories"); entity.SalesPerson = this; }