public Task <List <AccountContract> > GetByClient([NotNull] string clientId, bool showDeleted = false)
 {
     return(Convert(_accountManagementService.GetByClientAsync(
                        clientId.RequiredNotNullOrWhiteSpace(nameof(clientId)), showDeleted)));
 }