14 lines
261 B
C#
14 lines
261 B
C#
/*
|
|
* 默认对象工厂:相关对象是通过New 出来的
|
|
*/
|
|
|
|
namespace AibisDream.Kit
|
|
{
|
|
public class DefaultObjectFactory<T> : IObjectFactory<T> where T : new()
|
|
{
|
|
public T Create()
|
|
{
|
|
return new T();
|
|
}
|
|
}
|
|
} |