Beispiel #1
0
 public LivroController(IAssuntoApplicationService assuntoApp, IAutorApplicationService autorApp, ILivroApplicationService livroApp, ILivroAssuntoApplicationService livroAssuntoApp, ILivroAutorApplicationService livroAutorApp)
 {
     _assuntoApp      = assuntoApp;
     _autorApp        = autorApp;
     _livroApp        = livroApp;
     _livroAssuntoApp = livroAssuntoApp;
     _livroAutorApp   = livroAutorApp;
 }
 public AutorController(IAutorApplicationService autorApp)
 {
     _autorApp = autorApp;
 }