Exemple #1
0
        [HttpDelete] //http://localhost:2964/api/actors?id=3a96a2a2-fb1b-4f6a-b840-7fb27a846e8c
        public async Task <IActionResult> Delete(Guid id)
        {
            await _actorService.DeleteByIdAsync(id);

            return(Ok());
        }