Files
sockeye/server/kpi/KPIFactory.cs
2022-12-16 06:01:23 +00:00

33 lines
828 B
C#

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<string> GetListOfAllKPI()
// {
// List<string> ret = new List<string>();
// ret.Add("WorkOrderItemLaborQuantitySummary");
// ret.Add("WorkOrderUnscheduledOpenList");
// return ret;
// }
}//eoc
}//eons