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