Exemplo n.º 1
0
 public VotingController(IRepository <Candidate> _repository, IMapper _mapper, ICandidateInterface candidateService, IElectionInterface electionService)
 {
     Repository       = _repository;
     Mapper           = _mapper;
     CandidateService = candidateService;
     ElectionService  = electionService;
 }
Exemplo n.º 2
0
 public CandidatesController(IRepository <Candidate> _repository, IMapper _mapper, ICandidateInterface candidateService)
 {
     Repository       = _repository;
     Mapper           = _mapper;
     CandidateService = candidateService;
 }