IFactory.cs 136 B

123456789
  1. using Common.Base;
  2. namespace Model
  3. {
  4. public interface IFactory<out T> where T : Entity<T>
  5. {
  6. T Create(int configId);
  7. }
  8. }