* Renamed a bunch of Data baseclasses for clarity and readability

(Slowly getting there)
This commit is contained in:
lbsa71
2008-01-15 20:07:02 +00:00
parent 0a783e4442
commit f5103b98be
12 changed files with 199 additions and 232 deletions

View File

@@ -3,9 +3,9 @@ using TribalMedia.Framework.Data;
namespace OpenSim.Framework.Data
{
public abstract class OpenSimTableMapper<TRowMapper, TPrimaryKey> : ObjectTableMapper<TRowMapper, TPrimaryKey>
public abstract class OpenSimTableMapper<TRowMapper, TPrimaryKey> : BaseTableMapper<TRowMapper, TPrimaryKey>
{
public OpenSimTableMapper(DatabaseMapper database, string tableName) : base(database, tableName)
public OpenSimTableMapper(BaseDatabaseConnector database, string tableName) : base(database, tableName)
{
}