Example #1
0
        //public VagaCandidato GetForId(int id)
        //{
        //    return vagaCandidatoRepository.GetById(id);
        //}

        public void Remove(VagaCandidato entity)
        {
            vagaCandidatoRepository.Remove(entity);
        }
Example #2
0
 public void Update(VagaCandidato entity)
 {
     vagaCandidatoRepository.Update(entity);
 }
Example #3
0
 public VagaCandidato Add(VagaCandidato entity)
 {
     return(vagaCandidatoRepository.Add(entity));
 }