namespace QFSW.QC.Pooling { public interface IPool where T : class, new() { T GetObject(); void Release(T obj); } }