public async Task <ServiceResult <CreatedForm> > CreateZone([FromBody] CreateZoneForm createZoneForm)
        {
            var result = await TopicService.CreateZone(createZoneForm.ZoneName);

            return(Result(result.State, new CreatedForm {
                CreatedId = result.ExtraData?.Id
            }, result.Detail));
        }