Beispiel #1
0
 public DocenteController(IMultyTenancyService mt, IDocenteService ids, IUserService ius, ICursoService ics)
 {
     docenteService      = ids;
     userService         = ius;
     cursoService        = ics;
     multyTenancyService = mt;
 }
Beispiel #2
0
 public DocenteController()
 {
     if (_ubigeoService == null)
     {
         _ubigeoService = new UbigeoService();
     }
     if (_docenteService == null)
     {
         _docenteService = new DocenteService();
     }
 }
Beispiel #3
0
 public DocenteController(
     IDocenteService docenteService,
     IUsuarioService usuarioService,
     UserManager <AppUser> userManager,
     RoleManager <AppRole> roleManager
     )
 {
     _docenteService = docenteService;
     _usuarioService = usuarioService;
     _userManager    = userManager;
     _roleManager    = roleManager;
 }
Beispiel #4
0
 public ForoController(IForoService foroService, IMultyTenancyService ms, IDocenteService docenteService)
 {
     _foroService         = foroService;
     _multytenancyService = ms;
     _docenteService      = docenteService;
 }
 public DocenteController(IDocenteService docente_service, IMultyTenancyService nodo)
 {
     _docenteService = docente_service;
     _nodoFacultad   = nodo;
 }