Ejemplo n.º 1
0
 public EventoController(IEventoServicio eventoServicio, IHelperEmpresa helperEmpresa, IHelperEstablecimiento helperEstablecimiento, IHelperDisertante helperDisertante, IHelperSala helperSala, IHelperActividad helperActividad)
 {
     _eventoServicio        = eventoServicio;
     _helperEmpresa         = helperEmpresa;
     _helperEstablecimiento = helperEstablecimiento;
     _helperDisertante      = helperDisertante;
     _helperSala            = helperSala;
     _helperActividad       = helperActividad;
 }
 public HelperDisertante(IDisertanteServicio disertanteServicio, IHelperActividad helperActividad)
 {
     _disertanteServicio = disertanteServicio;
     _helperActividad    = helperActividad;
 }
Ejemplo n.º 3
0
 public HelperSala(ISalaServicio salaServicio, IHelperActividad helperActividad)
 {
     _salaServicio    = salaServicio;
     _helperActividad = helperActividad;
 }