Esempio n. 1
0
        public GolesController()
        {
            SegundaEDAPW3Entities context = new SegundaEDAPW3Entities();

            servicio        = new GolesServicio(context);
            servicioJugador = new JugadorServicio(context);
        }
Esempio n. 2
0
 public JugadorServicio(SegundaEDAPW3Entities contexto)
 {
     repositorio = new DAL.JugadorRepositorio(contexto);
 }
Esempio n. 3
0
 public GolesServicio(SegundaEDAPW3Entities contexto)
 {
     repositorio = new DAL.GolesRepositorio(contexto);
 }