public async Task Update(ClientDto entity)
 {
     await _iClientRepository.Update(ClientMapper.MapDtoToClient(entity));
 }
 public async Task Add(ClientDto client)
 {
     await _iClientRepository.Add(ClientMapper.MapDtoToClient(client));
 }