Change the interface a bit before someone depends on it's current form

slimupdates
Melanie 2009-12-29 20:14:26 +00:00
parent 18ca978b81
commit 8631cea215
2 changed files with 5 additions and 1 deletions

View File

@ -46,6 +46,6 @@ namespace OpenSim.Data
/// </summary>
public interface IUserAccountData
{
bool Store(UserAccountData data);
bool Store(UserAccountData data, UUID principalID, string token);
}
}

View File

@ -40,6 +40,10 @@ namespace OpenSim.Data.MySQL
public MySqlUserAccountData(string connectionString, string realm)
: base(connectionString, realm, "UserAccount")
{
public bool Store(UserAccountData data, UUID principalID, string token)
{
Store(data);
}
}
}
}