using StructureHelper.Models.Materials; using StructureHelperCommon.Infrastructures.Interfaces; using StructureHelperCommon.Models.Forces; using StructureHelperCommon.Models.Repositories; namespace StructureHelperCommon.Infrastructures.Settings { internal static class GlobalRepository { private static IDataRepository materials; private static IDataRepository actions; //public static IDataRepository Materials //{ // get // { // materials ??= new ListRepository(new HeadMaterialUpdateStrategy()); // return materials; // } //} //public static IDataRepository Actions //{ // get // { // actions ??= new ListRepository(new ActionUpdateStrategy()); // return actions; // } //} } }