23 lines
374 B
C#
23 lines
374 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Text;
|
|
|
|
namespace Zhaizj.Framework.ORM.Finder
|
|
{
|
|
|
|
internal abstract class FinderBase
|
|
{
|
|
protected ObjectInfo state;
|
|
public FinderBase()
|
|
{
|
|
|
|
}
|
|
|
|
public FinderBase(ObjectInfo state)
|
|
{
|
|
this.state = state;
|
|
}
|
|
public abstract IList Find();
|
|
}
|
|
}
|