public async Task <ActionResult <CustomEntity> > Post([FromBody] CustomDto value)
        {
            try
            {
                var entity = await _customTestService.Create(value);

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