Exemplo n.º 1
0
 public IActionResult SaveNewWordsList(CreatorListsView saveList)
 {
     creatorListsService.CreateWordsList(saveList.saveListWords.ViewToDto());
     return(RedirectToAction("Creator"));
 }
Exemplo n.º 2
0
 public CreatorListsController(ICreatorListsService creatorListsService)
 {
     creatorListsView         = new CreatorListsView();
     this.creatorListsService = creatorListsService;
 }