Example #1
0
        public PremiosController()
        {
            Web3EA2Entities ctx = new Web3EA2Entities();

            PremiosServicio      = new PremiosServicio(ctx);
            CompetidoresServicio = new CompetidoresServicio(ctx);
        }
        public CantidadTotalPremiosApiController()
        {
            Web3EA2Entities ctx = new Web3EA2Entities();

            PremiosServicio = new PremiosServicio(ctx);
        }
Example #3
0
 public PremiosServicio(Web3EA2Entities ctx)
 {
     PremiosRepositorio = new PremiosRepositorio(ctx);
 }
Example #4
0
 public CompetidoresServicio(Web3EA2Entities ctx)
 {
     CompetidoresRepositorio = new CompetidoresRepositorio(ctx);
 }