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