Example #1
0
        public EspelhoMatricula(IMatriculaService matriculaService, IMapper mapper)
        {
            this.matriculaService = matriculaService
                                    ?? throw new ArgumentNullException(nameof(matriculaService));

            this.mapper = mapper
                          ?? throw new ArgumentNullException(nameof(mapper));
        }
Example #2
0
        public CadastroMatricula(IMatriculaService matriculaService,
                                 ITurmaDisciplinaService turmaDisciplinaService)
        {
            this.matriculaService = matriculaService
                                    ?? throw new ArgumentNullException(nameof(matriculaService));

            this.turmaDisciplinaService = turmaDisciplinaService
                                          ?? throw new ArgumentNullException(nameof(turmaDisciplinaService));
        }
Example #3
0
        public TurmaDisciplinaService(IDisciplinaService disciplinaService,
                                      IMatriculaService matriculaService)
        {
            this.disciplinaService = disciplinaService
                                     ?? throw new ArgumentNullException(nameof(disciplinaService));

            this.matriculaService = matriculaService
                                    ?? throw new ArgumentNullException(nameof(matriculaService));
        }
Example #4
0
 public AlunoService(IAlunoRepository alunoRepository,
                     IPessoaFisicaRepository pessoaFisicaRepository,
                     IEscolaRepository escolaRepository,
                     IMatriculaService matriculaService)
 {
     _alunoRepository        = alunoRepository;
     _pessoaFisicaRepository = pessoaFisicaRepository;
     _escolaRepository       = escolaRepository;
     _matriculaService       = matriculaService;
 }
Example #5
0
 public MatriculaController(IMatriculaService iMatriculaService,
                            IComponenteEducativoService iComponenteEducativoService,
                            IPersonaService iPersonaService,
                            IApplication application)
 {
     _iMatriculaService           = iMatriculaService;
     _iComponenteEducativoService = iComponenteEducativoService;
     _iPersonaService             = iPersonaService;
     _application = application;
 }
Example #6
0
 public ResultadoController(ICatalogoService iCatalogoService,
                            IApplication application,
                            IParametroService parametroService,
                            IPersonaService iPersonaService,
                            IMatriculaService iMatriculaService,
                            IAsignacionDocenteService iAsignacionDocenteService,
                            IResultadoService iResultadoService)
 {
     _iCatalogoService          = iCatalogoService;
     _application               = application;
     _parametroService          = parametroService;
     _iPersonaService           = iPersonaService;
     _iResultadoService         = iResultadoService;
     _iMatriculaService         = iMatriculaService;
     _iAsignacionDocenteService = iAsignacionDocenteService;
 }
 public MatriculaController()
 {
     if (_matriculaService == null)
     {
         _matriculaService = new MatriculaService();
     }
     if (_alumnoService == null)
     {
         _alumnoService = new AlumnoService();
     }
     if (_apoderadoService == null)
     {
         _apoderadoService = new ApoderadosService();
     }
     if (_anioAcademicoService == null)
     {
         _anioAcademicoService = new AnioAcademicoService();
     }
     if (_ubigeoService == null)
     {
         _ubigeoService = new UbigeoService();
     }
     if (_documentoService == null)
     {
         _documentoService = new DocumentoService();
     }
     if (_nivelService == null)
     {
         _nivelService = new NivelService();
     }
     if (_gradoService == null)
     {
         _gradoService = new GradoService();
     }
     if (_seccionService == null)
     {
         _seccionService = new SeccionService();
     }
 }
Example #8
0
 public MatriculaController(IMatriculaService matriculaService)
 {
     _matriculaService = matriculaService;
 }
Example #9
0
 public RealizarMatricula()
 {
     this.service = new MatriculaService();
 }