This commit is contained in:
2022-12-16 06:01:23 +00:00
parent 26c2ae5cc9
commit effd96143f
310 changed files with 48715 additions and 0 deletions

33
server/kpi/KPIFactory.cs Normal file
View File

@@ -0,0 +1,33 @@
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