Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/28/10 15:27:04 (13 years ago)
Author:
jwolfing
Message:

#1196 Changed BaseClasses in Data Transfer Objects, added Methods to User and Role ServiceClasses

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/UserManagement/HeuristicLab.Services.Authentication.TestClient2/UserManagement.cs

    r4789 r4979  
    7979                        // insert
    8080                        selectedApplication.Id = Guid.NewGuid();
    81                         auth.InsertApplication(selectedApplication);
     81                        auth.AddApplication(selectedApplication);
    8282                    }
    8383                    else
     
    127127                    selectedRole.ApplicationId = currentApplication.Id;
    128128
    129                     auth.InsertRole(selectedRole);
     129                    auth.AddRole(selectedRole);
    130130                }
    131131                else
     
    183183                    selectedUser.ApplicationId = currentApplication.Id;
    184184
    185                     auth.InsertUser(selectedUser);
     185                    auth.AddUser(selectedUser);
    186186                }
    187187                else
Note: See TracChangeset for help on using the changeset viewer.