public async Task <ActionResult <CustomEntity> > Get(Guid id)
        {
            try
            {
                var entity = await _customTestService.Get(id);

                return(Ok(entity));
            }
            catch (Exception e)
            {
                throw e;
            }
        }