示例#1
0
        public async Task <ActionResult> Create(ActorAddDto newActor)
        {
            await _actorService.AddPost(newActor);

            return(RedirectToAction(nameof(Index)));
        }