using HH.WMS.Utils; namespace HH.WCS.SJML.Bll { public static class BLLCreator { public static T Create() where T : new() { var v = ObjectCreator.Create(); return v; } public static T CreateSingleton() where T : class, new() { var v = ObjectCreator.CreateSingleton(); return v; } } }