Beispiel #1
0
 public Client GetClientById(string clientId)
 {
     if (string.IsNullOrEmpty(clientId))
     {
         return(null);
     }
     return(_clientDataService.GetClientById(clientId));
 }