Expose Delete at IUserAccountData interface. It was there already. No changes in IUserAccountService, just the data layer.

This commit is contained in:
Diva Canto
2010-04-16 16:36:44 -07:00
parent 26e3884237
commit 930d374525
2 changed files with 22 additions and 0 deletions

View File

@@ -48,6 +48,7 @@ namespace OpenSim.Data
{
UserAccountData[] Get(string[] fields, string[] values);
bool Store(UserAccountData data);
bool Delete(string field, string val);
UserAccountData[] GetUsers(UUID scopeID, string query);
}
}