public void UnionCsServiceManagement_CanDeletingEvent(object sender, CancellerEventArgs e) { if (this.CanServiceDeletingEvent != null) { this.CanServiceDeletingEvent(sender, e); } }
public void TerminalManagement_CanDeletingEvent(object sender, CancellerEventArgs e) { if (this.CanTerminalDeletingEvent != null) { this.CanTerminalDeletingEvent(sender, e); } }
public void MobilityManagement_CanDeletingEvent(object sender, CancellerEventArgs e) { if (this.CanMobilityDeletingEvent != null) { this.CanMobilityDeletingEvent(sender, e); } }
private void RecepEquipManagement_CanDeletingEvent(object sender, CancellerEventArgs e) { if (this.CanDeleteingReceptionEquipment != null) { this.CanDeleteingReceptionEquipment(sender, e); } }
public void TerminalDeleting(object boj, CancellerEventArgs c) { CanTerminalDeletingEvent += TerminalDeleting; }
public void ServiceDeleting(object boj, CancellerEventArgs c) { CanServiceDeletingEvent += ServiceDeleting; }
public void MobilityDeleting(object boj, CancellerEventArgs c) { CanMobilityDeletingEvent += MobilityDeleting; }
public void DelTerminalEvent(object sender, CancellerEventArgs e) { foreach (KeyValuePair<string, CellTrafficMap> pair in this.m_MapDict) { foreach (KeyValuePair<Terminal, float> pair2 in pair.Value.TerminalDistributionDict) { if (pair2.Key.Name == e.TargetName) { e.Cancel = true; } } } }
public void DelServiceEvent(object sender, CancellerEventArgs e) { foreach (KeyValuePair<string, CellTrafficMap> pair in this.m_MapDict) { foreach (KeyValuePair<Transceiver, List<CellServiceContext>> pair2 in pair.Value.CellServiceContextDict) { foreach (CellServiceContext context in pair2.Value) { if (context.Service.Name == e.TargetName) { e.Cancel = true; } } } } }