public async Task <InterestsGetByIdDTO> GetInterestsByEntityId(int id)
        {
            var rao = await _repository.GetInterestsByEntityId(id);

            var dto = _mapper.Map <InterestsGetByIdDTO>(rao);

            return(dto);
        }