using Common.Base; namespace Model { public interface IFactory where T : Entity { T Create(int configId); } }