Remove CreateUserAccount. Rename SetUserAccount to StoreUserAccount.

Implement the fetch operations fully. Rename one last UserService file to
UserAccountService
This commit is contained in:
Melanie
2009-12-31 01:16:16 +00:00
parent 96f387ce49
commit 3507005d9d
6 changed files with 79 additions and 66 deletions

View File

@@ -95,11 +95,9 @@ namespace OpenSim.Services.Interfaces
//
List<UserAccount> GetUserAccounts(UUID scopeID, string query);
// Update all updatable fields
// Store the data given, wich replaces the sotred data, therefore
// must be complete.
//
bool SetUserAccount(UserAccount data);
// Creates a user data record
bool CreateUserAccount(UserAccount data);
bool StoreUserAccount(UserAccount data);
}
}