public DocenteController(IMultyTenancyService mt, IDocenteService ids, IUserService ius, ICursoService ics) { docenteService = ids; userService = ius; cursoService = ics; multyTenancyService = mt; }
public DocenteController() { if (_ubigeoService == null) { _ubigeoService = new UbigeoService(); } if (_docenteService == null) { _docenteService = new DocenteService(); } }
public DocenteController( IDocenteService docenteService, IUsuarioService usuarioService, UserManager <AppUser> userManager, RoleManager <AppRole> roleManager ) { _docenteService = docenteService; _usuarioService = usuarioService; _userManager = userManager; _roleManager = roleManager; }
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; }