Example #1
0
        public async Task <IActionResult> DeleteMapLayerAsync(
            [FromServices] NaheulbookExecutionContext executionContext,
            [FromRoute] int mapLayerId
            )
        {
            await _mapService.DeleteMapLayerAsync(executionContext, mapLayerId);

            return(NoContent());
        }