- Timestamp:
- 11/27/10 10:48:24 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/UserManagement/HeuristicLab.Services.Authentication/Interfaces/IAuthenticationService.cs
r4926 r4962 20 20 21 21 [OperationContract] 22 boolInsertUser(User user);22 Guid InsertUser(User user); 23 23 24 24 [OperationContract] … … 50 50 51 51 [OperationContract] 52 boolInsertRole(Role role);52 Guid InsertRole(Role role); 53 53 54 54 [OperationContract] … … 69 69 70 70 [OperationContract] 71 boolInsertApplication(Application application);71 Guid InsertApplication(Application application); 72 72 73 73 [OperationContract] … … 77 77 IEnumerable<DataTransfer.Application> GetApplications(); 78 78 79 80 [OperationContract] 81 bool UpdateApplication(Application application); 82 79 83 #endregion 80 84
Note: See TracChangeset
for help on using the changeset viewer.