public List <DTO.Candidate> GetAllCandidate() { return(CandidateBL.GetAllCandidate()); }
public List <DTO.Candidate> CandidatesPersonalCare(int IdMatchmaker) { return(CandidateBL.CandidatesPersonalCare(IdMatchmaker)); }
public bool RegisterCandidate([FromBody] Candidate value) { return(CandidateBL.RegisterCandidate(value) != null ? true : false); }