public VotingController(IRepository <Candidate> _repository, IMapper _mapper, ICandidateInterface candidateService, IElectionInterface electionService)
 {
     Repository       = _repository;
     Mapper           = _mapper;
     CandidateService = candidateService;
     ElectionService  = electionService;
 }
Beispiel #2
0
 public CandidatesController(IRepository <Candidate> _repository, IMapper _mapper, ICandidateInterface candidateService)
 {
     Repository       = _repository;
     Mapper           = _mapper;
     CandidateService = candidateService;
 }