- Timestamp:
- 02/29/12 17:41:18 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ClientUserManagement/HeuristicLab.Clients.Access/3.3/ServiceClients/AccessServiceClient.cs
r7534 r7536 1084 1084 1085 1085 [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IAccessService/AddClient", ReplyAction = "http://tempuri.org/IAccessService/AddClientResponse")] 1086 System.Guid AddClient(HeuristicLab.Clients.Access.Client client);1086 void AddClient(HeuristicLab.Clients.Access.Client client); 1087 1087 1088 1088 [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IAccessService/UpdateClient", ReplyAction = "http://tempuri.org/IAccessService/UpdateClientResponse")] … … 1297 1297 } 1298 1298 1299 public System.Guid AddClient(HeuristicLab.Clients.Access.Client client) {1300 returnbase.Channel.AddClient(client);1299 public void AddClient(HeuristicLab.Clients.Access.Client client) { 1300 base.Channel.AddClient(client); 1301 1301 } 1302 1302
Note: See TracChangeset
for help on using the changeset viewer.