Esempio n. 1
0
        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);
        }
Esempio n. 2
0
 public AlunoesController(IAluno context, IPessoa contextPessoa)
 {
     _context       = context;
     _contextPessoa = contextPessoa;
 }
Esempio n. 3
0
 public AlunoController(IAluno aluno)
 {
     _aluno = aluno;
 }
Esempio n. 4
0
 public HomeController(IAluno IngecaoAlunoBll)
 {
     alunoBll = IngecaoAlunoBll;
 }
Esempio n. 5
0
 public TesteDependencyInjection(IAluno aluno)
 {
     _aluno = aluno;
 }
Esempio n. 6
0
 public AlunosController(IAluno ialunos)
 {
     _ialunos = ialunos;
 }
Esempio n. 7
0
 public async Task <int> CadastraAlunoAsync(IAluno aluno)
 {
     return(await alunoRepository.CadastraAlunoAsync(aluno));
 }
Esempio n. 8
0
 public void Executar()
 {
     aluno = AlunoFactory.CriarAluno(TipoAlunoEnum.Graduacao);
 }
Esempio n. 9
0
 public AlunoService(IAluno alunoRepository)
 {
     _alunoRepository = alunoRepository;
 }
Esempio n. 10
0
 public Task <int> CadastraAlunoAsync(IAluno aluno)
 {
     return(Task.FromResult(new Random().Next(1, 5)));
 }
Esempio n. 11
0
 public HomeController(IAluno aluno)
 {
     _context = aluno;
 }
Esempio n. 12
0
 public IAluno Excluir(IAluno a)
 {
     throw new NotImplementedException();
 }
Esempio n. 13
0
 public Aluno Cadastrar(IAluno a)
 {
     throw new NotImplementedException();
 }