private bool FilterKPI(KPI entity)
 {
     return (entity.ma_kpis == this.id_kpis);
 }
 private bool FilterKPIs(KPI entity)
 {
     return (entity.id_kpos == this.id);
 }
 private void DetachKPIs(KPI entity)
 {
     entity.KPOs = null;
 }
 private void AttachKPIs(KPI entity)
 {
     entity.KPOs = this;
 }
示例#5
0
 /// <summary>
 /// Create a new KPI object.
 /// </summary>
 /// <param name="ma_kpis">Initial value of the ma_kpis property.</param>
 public static KPI CreateKPI(global::System.String ma_kpis)
 {
     KPI kPI = new KPI();
     kPI.ma_kpis = ma_kpis;
     return kPI;
 }
示例#6
0
 /// <summary>
 /// Deprecated Method for adding a new object to the KPIs EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToKPIs(KPI kPI)
 {
     base.AddObject("KPIs", kPI);
 }