Beispiel #1
0
 public AlunoController(IMapper mapper, IModuloAppService moduloAppService, IUnidadeAppService unidadeAppService, IRecuperarArquivosAppService arquivoAppService, IAlunoAppService alunoAppService)
 {
     _mapper            = mapper;
     _moduloAppService  = moduloAppService;
     _unidadeAppService = unidadeAppService;
     _arquivoAppService = arquivoAppService;
     _alunoAppService   = alunoAppService;
 }
 public ControleDeAlunoController(IMapper mapper, IPessoaAppService pessoaAppService, UserManager <AppUser> userManager, SignInManager <AppUser> signInManager, IAlunoAppService alunoAppService, ICursoAppService cursoAppService, ICoordenadorAppService coordenadorAppService)
 {
     _mapper                = mapper;
     _pessoaAppService      = pessoaAppService;
     _alunoAppService       = alunoAppService;
     _cursoAppService       = cursoAppService;
     _userManager           = userManager;
     _coordenadorAppService = coordenadorAppService;
 }
Beispiel #3
0
 public AlunoController(
     UserManager <ApplicationUser> userManager,
     SignInManager <ApplicationUser> signInManager,
     IAlunoAppService alunoAppService,
     INotificationHandler <DomainNotification> notifications,
     IMediatorHandler mediator) : base(notifications, mediator)
 {
     _userManager     = userManager;
     _signInManager   = signInManager;
     _alunoAppService = alunoAppService;
 }
 public AlunoController(IAlunoAppService appService)
 {
     this.appService = appService;
 }
 public AccountController(ApplicationUserManager userManager, ApplicationSignInManager signInManager, IAlunoAppService alunoAppService)
 {
     _userManager     = userManager;
     _signInManager   = signInManager;
     _alunoAppService = alunoAppService;
 }
 public AlunoController(IAlunoAppService alunoAppService)
 {
     _alunoAppService = alunoAppService;
 }
Beispiel #7
0
        public HomeController(IAlunoAppService alunoappservice)
        {
            _alunoappservice = alunoappservice;

            // teste
        }
Beispiel #8
0
 public TurmaController(ITurmaAppService turmaAppService, IEscolaAppService escolaAppService, IAlunoAppService alunoAppService)
 {
     _turmaAppService  = turmaAppService;
     _escolaAppService = escolaAppService;
     _alunoAppService  = alunoAppService;
 }
Beispiel #9
0
 public TurmaController(ITurmaAppService appService, IAlunoAppService alunoAppService, IDisciplinaAppService disciplinaAppService)
 {
     this.appService           = appService;
     this.alunoAppService      = alunoAppService;
     this.disciplinaAppService = disciplinaAppService;
 }
 public CursosController(ICursoAppService cursoApp, IAlunoAppService alunoApp)
 {
     _alunoApp = alunoApp;
     _cursoApp = cursoApp;
 }
Beispiel #11
0
 public AlunosController(IAlunoAppService _service)
 {
     appService = _service;
 }
 public TurmaController(ITurmaAppService turmaappservice, IProfessorAppService professorappservice, IAlunoAppService alunoappservice)
 {
     _turmaappservice     = turmaappservice;
     _professorAppService = professorappservice;
     _alunoappservice     = alunoappservice;
 }
 public AlunoController(IAlunoAppService alunoAppService)
 {
     _alunoAppService = alunoAppService;
 }
 public AlunoController(ITurmaAppService turmaAppService, IAlunoAppService alunoAppService)
 {
     _turmaAppService = turmaAppService;
     _alunoAppService = alunoAppService;
 }
 public AlunosController(IAlunoAppService alunoApp)
 {
     _alunoApp = alunoApp;
 }