Example #1
0
 public void SetupVariables()
 {
     _bdRepository     = new JugadorRepository();
     _specification    = new Specification();
     _jugadoresFactory = new JugadoresFactory(_specification);
     _persistence      = new Persistence(_bdRepository, _jugadoresFactory);
 }
 public JugadoresController(
     IUnitOfWork unitOfWork,
     IJugadorRepository jugadorRepository,
     JugadorAssembler jugadorAssembler)
 {
     _unitOfWork        = unitOfWork;
     _jugadorRepository = jugadorRepository;
     _jugadorAssembler  = jugadorAssembler;
 }
Example #3
0
 public JugadorService(IJugadorRepository repository, IUnitOfWork unitOfWork)
 {
     this.repository = repository;
     this.unitOfWork = unitOfWork;
 }
Example #4
0
 public JugadorBusiness(IJugadorRepository repository, IPartidoBusiness partidoBusiness)
 {
     this.repository      = repository;
     this.partidoBusiness = partidoBusiness;
 }
Example #5
0
 public JugadorBusiness()
 {
     this.repository      = new JugadorRepository();
     this.partidoBusiness = new PartidoBusiness();
 }
Example #6
0
 public JugadoresController(IJugadorRepository repositorio)
 {
     _repositorio = repositorio;
 }
Example #7
0
 public JugadoresController()
 {
     _repositorio = new JugadorRepository();
 }
 public JugadorRepositoryController(IJugadorRepository repositorio)
 {
     this.repositorio = repositorio;
 }
Example #9
0
 public JugadorService(IJugadorRepository jugadorRepository)
 {
     this.jugadorRepository = jugadorRepository;
 }
Example #10
0
 public Persistence(IJugadorRepository repository, IJugadoresFactory factory)
 {
     _repository = repository;
     _factory    = factory;
 }
Example #11
0
 public JugadoresController(IJugadorRepository ctJugador, IMapper mapper)
 {
     _ctJugador = ctJugador;
     _mapper    = mapper;
 }
 public JugadoresController(IJugadorRepository repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
Example #13
0
 public JugadorDomain(IJugadorRepository jugadorRepository)
 {
     _jugadorRepository = jugadorRepository;
 }
 public JugadorNegocio(IJugadorRepository repository)
 {
     this.repository = repository;
 }
Example #15
0
 public JugadorController(IJugadorRepository bdRepository, IRepository apiRepository, IPersistence persistence)
 {
     _bdRepository  = bdRepository;
     _apiRepository = apiRepository;
     _persistence   = persistence;
 }
Example #16
0
 public JugadorManager(IJugadorRepository repository)
 {
     _repository = repository;
 }
 public JugadorRepositoryController()
 {
     this.repositorio = new JugadorRepository();
 }