public async Task <IActionResult> Get(long[] Ids)
        {
            try
            {
                var resp = await _ideaService.Get(Ids);

                return(Ok(resp));
            }
            catch (Exception ex)
            {
                return(BadRequest(ex));
            }
        }