public Client GetById(int id)
        {
            var client = _clientDao.GetForId(id);

            return(client);
        }