コード例 #1
0
 public DocenteController()
 {
     if (_ubigeoService == null)
     {
         _ubigeoService = new UbigeoService();
     }
     if (_docenteService == null)
     {
         _docenteService = new DocenteService();
     }
 }
コード例 #2
0
 public AlumnoController()
 {
     if (_alumnoService == null)
     {
         _alumnoService = new AlumnoService();
     }
     if (_ubigeoService == null)
     {
         _ubigeoService = new UbigeoService();
     }
 }
コード例 #3
0
 public UbigeoController()
 {
     if (_ubigeoService == null)
     {
         _ubigeoService = new UbigeoService();
     }
     if (_paisService == null)
     {
         _paisService = new PaisService();
     }
 }
コード例 #4
0
 public ApoderadoController()
 {
     if (_apoderadoService == null)
     {
         _apoderadoService = new ApoderadosService();
     }
     if (_ubigeoService == null)
     {
         _ubigeoService = new UbigeoService();
     }
 }
コード例 #5
0
 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();
     }
 }
コード例 #6
0
 public UbigeoController(IUbigeoService UbigeoService, Core.Common.Logger.ILog log)
 {
     _UbigeoService = UbigeoService;
     _log           = log;
 }
コード例 #7
0
 public CitasController(IUbigeoService ubigeoService)
 {
     this.ubigeoService = ubigeoService;
 }
コード例 #8
0
 public UbigeoController()
 {
     _IUbigeoService = new UbigeoService();
 }
コード例 #9
0
 public UbigeosController(IUbigeoService ubigeoService,
                          IPaisService paisService)
 {
     this.ubigeoService = ubigeoService;
     this.paisService   = paisService;
 }