Example #1
0
 public ResultadoOperacao Cadastrar(CandidatoInclusaoVM entity) =>
 new ResultadoOperacao
 {
     Identificador = appService.Cadastrar(entity).ToString(), Sucesso = true
 };
Example #2
0
 public int Cadastrar(CandidatoInclusaoVM entity) =>
 _service.Cadastrar(MapperUtils.Map <CandidatoInclusaoVM, Candidato>(entity));