using System.Collections.Generic; using AyaNova.Biz; namespace AyaNova.DataList { internal static class DataListFactory { internal static IAyaDataList GetAyaDataList(string ListKey) { switch (ListKey) { case nameof(TestWidgetUserEmail): return new TestWidgetUserEmail(); default: throw new System.ArgumentOutOfRangeException($"DataListFactory: Unknown list \"{ListKey}\""); } } } }