1234567891011121314151617 |
- using Ant.Mapper;
- using Ant.ORM;
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Reflection;
- using System.Text;
- namespace Ant.Query.Mapping
- {
- public interface IObjectActivatorCreator
- {
- IObjectActivator CreateObjectActivator();
- IObjectActivator CreateObjectActivator(AntORM dbContext);
- }
- }
|