コード例 #1
0
ファイル: ClientsService.cs プロジェクト: parhimarsen/ONION
 public bool UpdateClient(int clientId, DomainClient client)
 {
     if (client != null)
     {
         _repository.Clients.UpdateClient(clientId, client.ToInfrastructure());
         return(true);
     }
     else
     {
         return(false);
     }
 }
コード例 #2
0
ファイル: ClientsService.cs プロジェクト: parhimarsen/ONION
 public DomainClient CreateClient(DomainClient client)
 {
     _repository.Clients.CreateClient(client?.ToInfrastructure());
     return(client);
 }