private bool FiltersKPIs(sKPI entity)
 {
     return (entity.id_kpo == this.id);
 }
 private void DetachsKPIs(sKPI entity)
 {
     entity.sKPO = null;
 }
 private void AttachsKPIs(sKPI entity)
 {
     entity.sKPO = this;
 }
 private bool FiltersKPI(sKPI entity)
 {
     return (entity.ma_kpi == this.id_kpi);
 }
 /// <summary>
 /// Create a new sKPI object.
 /// </summary>
 /// <param name="ma_kpi">Initial value of the ma_kpi property.</param>
 public static sKPI CreatesKPI(global::System.String ma_kpi)
 {
     sKPI sKPI = new sKPI();
     sKPI.ma_kpi = ma_kpi;
     return sKPI;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the sKPIs EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddTosKPIs(sKPI sKPI)
 {
     base.AddObject("sKPIs", sKPI);
 }