Exemple #1
0
        public GolesController()
        {
            GoleadaDBEntities contexto = new GoleadaDBEntities();

            GolesService     = new GolesService(contexto);
            JugadoresService = new JugadoresService(contexto);
        }
Exemple #2
0
 public JugadoresRepository(GoleadaDBEntities contexto)
 {
     this.contexto = contexto;
 }
Exemple #3
0
        public CantidadTotalGolesEquipoApiController()
        {
            GoleadaDBEntities contexto = new GoleadaDBEntities();

            GolesService = new GolesService(contexto);
        }
Exemple #4
0
 public JugadoresService(GoleadaDBEntities contexto)
 {
     repo = new JugadoresRepository(contexto);
 }
Exemple #5
0
        public GolesDTOApiController()
        {
            GoleadaDBEntities contexto = new GoleadaDBEntities();

            GolesService = new GolesService(contexto);
        }
Exemple #6
0
 public GolesService(GoleadaDBEntities contexto)
 {
     repo = new GolesRepository(contexto);
 }