public DashboardController(IUyedetayService uyedetayService, ISinavService sinavService, ITemaService temaService, IDersService dersService, IRolService rolService, IYetkiService yetkiService)
 {
     _uyedetayService = uyedetayService;
     _sinavService    = sinavService;
     _temaService     = temaService;
     _dersService     = dersService;
     _rolService      = rolService;
     _yetkiService    = yetkiService;
 }
Exemple #2
0
 public ArtigoService(
     IUnitOfWork unitOfWork,
     UserManager <Usuario> userManager,
     IAutorService autorService,
     ITemaService temaService,
     ICategoriaService categoriaService
     ) : base(unitOfWork)
 {
     _userManager      = userManager;
     _autorService     = autorService;
     _temaService      = temaService;
     _categoriaService = categoriaService;
 }
 public PreguntaController(ITemaService TemaService, IPreguntasService preguntasService)
 {
     this.TemaService      = TemaService;
     this.preguntasService = preguntasService;
 }
Exemple #4
0
 public TemaController(ITemaService temaService, IMapper mapper)
 {
     _temaService = temaService;
     _mapper      = mapper;
 }
Exemple #5
0
 /// <summary>
 /// Construtor Object Class EV_TEMA
 /// </summary>
 /// <param name="context">context database</param>
 public TemaBusiness(ITemaService pTemaService)
 {
     m_TemaService = pTemaService;
 }
 public TemasController(ITemaService temaService)
 {
     _temaService = temaService;
 }
Exemple #7
0
 public TemaController(ITemaService service)
 {
     this.service = service;
 }
Exemple #8
0
 public TemaController()
 {
     service = new TemaService();
 }
Exemple #9
0
 public CategoriaService(IUnitOfWork unitOfWork, ITemaService temaService)
     : base(unitOfWork)
 {
     _temaService = temaService;
 }
Exemple #10
0
 public TemaController(ITemaService temaService, ICategoriaService categoriaService)
 {
     this.temaService      = temaService;
     this.categoriaService = categoriaService;
 }