Esempio n. 1
0
 public HomeController(IFotoApplicationService fotoSvc, IEventoApplicationService evtSvc)
 {
     _eventoApp = evtSvc;
     _fotoApp   = fotoSvc;
 }
Esempio n. 2
0
 public FotoAdminController(IFotoApplicationService appSvc, IEventoApplicationService evtSvc)
 {
     _appSvc = appSvc;
     _evtSvc = evtSvc;
 }
Esempio n. 3
0
 public EventoController(IEventoApplicationService eventoApplicationService, IMapper mapper)
 {
     _eventoApplicationService = eventoApplicationService;
     _mapper = mapper;
 }
Esempio n. 4
0
 public EventosController(IEventoApplicationService appSvc)
 {
     _appSvc = appSvc;
 }