Exemplo n.º 1
0
        public async Task <IActionResult> Create([FromBody] CreateContentPageInput input)
        {
            var absolutePath = Path.Combine(_webHostEnvironment.WebRootPath, ContentPage.IMAGE_PATH);

            await _contentPageService.Create(input, absolutePath);

            return(Ok());
        }