Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/29/12 17:41:18 (13 years ago)
Author:
ascheibe
Message:

#1648 added client registration ui

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ClientUserManagement/HeuristicLab.Clients.Access/3.3/ServiceClients/AccessServiceClient.cs

    r7534 r7536  
    10841084
    10851085    [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);
    10871087
    10881088    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IAccessService/UpdateClient", ReplyAction = "http://tempuri.org/IAccessService/UpdateClientResponse")]
     
    12971297    }
    12981298
    1299     public System.Guid AddClient(HeuristicLab.Clients.Access.Client client) {
    1300       return base.Channel.AddClient(client);
     1299    public void AddClient(HeuristicLab.Clients.Access.Client client) {
     1300      base.Channel.AddClient(client);
    13011301    }
    13021302
Note: See TracChangeset for help on using the changeset viewer.