public async Task CadastraAlunoAsync(AlunoEntrada aluno) { IAluno alunoModel = await alunoService.ConsultarAlunoPorCpfAsync(aluno.CPF); if (alunoModel != null) { return; } //alunoModel = new Aluno(alunno); Falta implementar await alunoService.CadastraAlunoAsync(alunoModel); }
public AlunoesController(IAluno context, IPessoa contextPessoa) { _context = context; _contextPessoa = contextPessoa; }
public AlunoController(IAluno aluno) { _aluno = aluno; }
public HomeController(IAluno IngecaoAlunoBll) { alunoBll = IngecaoAlunoBll; }
public TesteDependencyInjection(IAluno aluno) { _aluno = aluno; }
public AlunosController(IAluno ialunos) { _ialunos = ialunos; }
public async Task <int> CadastraAlunoAsync(IAluno aluno) { return(await alunoRepository.CadastraAlunoAsync(aluno)); }
public void Executar() { aluno = AlunoFactory.CriarAluno(TipoAlunoEnum.Graduacao); }
public AlunoService(IAluno alunoRepository) { _alunoRepository = alunoRepository; }
public Task <int> CadastraAlunoAsync(IAluno aluno) { return(Task.FromResult(new Random().Next(1, 5))); }
public HomeController(IAluno aluno) { _context = aluno; }
public IAluno Excluir(IAluno a) { throw new NotImplementedException(); }
public Aluno Cadastrar(IAluno a) { throw new NotImplementedException(); }