public async Task <ClientDto> GetById(long id) { var client = await _iClientRepository.GetById(id); return(ClientMapper.MapClientToDto(client)); }