Some refactoring. Database is now active in the new user server

This commit is contained in:
Melanie Thielker
2009-05-05 05:35:22 +00:00
parent f51f552baa
commit 8b9f8be512
5 changed files with 94 additions and 9 deletions

View File

@@ -25,17 +25,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
using System;
using System.Reflection;
using Nini.Config;
using OpenSim.Data;
using OpenSim.Services.Interfaces;
namespace OpenSim.Services.UserService
{
public class UserService : IUserServices
public class UserService : UserServiceBase, IUserService
{
private UserDataBase m_DataBase = null;
public UserService(IConfigSource config)
public UserService(IConfigSource config) : base(config)
{
}
}