public GolesController()
        {
            SegundaEDAPW3Entities context = new SegundaEDAPW3Entities();

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