public PremiosController() { EA2Entities context = new EA2Entities(); servicioPremios = new ServicioPremios(context); servicioCompetidores = new ServicioCompetidores(context); }
public PremiosDAO(EA2Entities context) { contexto = context; }
public CompetidoresDAO(EA2Entities context) { contexto = context; }
public ServicioCompetidores(EA2Entities context) { competidoresDAO = new CompetidoresDAO(context); }
public CantidadTotalPremiosApiController() { EA2Entities context = new EA2Entities(); servicioPremios = new ServicioPremios(context); }
public ServicioPremios(EA2Entities context) { premiosDAO = new PremiosDAO(context); }