using System.Collections.Generic; namespace Sockeye.KPI { internal static class KPIFactory { //Instantiate list object specified from type internal static IAyaKPI GetAyaKPI(string name) { switch (name) { default: throw new System.NotImplementedException($"KPI {name} NOT IMPLEMENTED"); } //return null; } // //List all the KPI types available // internal static List GetListOfAllKPI() // { // List ret = new List(); // ret.Add("WorkOrderItemLaborQuantitySummary"); // ret.Add("WorkOrderUnscheduledOpenList"); // return ret; // } }//eoc }//eons