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