public async Task <bool> CreateInterests(InterestsCreateDTO dto)
        {
            var rao = _mapper.Map <InterestsCreateRAO>(dto);

            if (await _repository.CreateInterests(rao))
            {
                return(true);
            }

            throw new NotImplementedException();
        }