Esempio n. 1
0
 public ACProfessorController(IOptions <BaseUrl> baseUrl,
                              UserManager <ApplicationUser> userManager,
                              SignInManager <ApplicationUser> signInManager,
                              IAcademicoAppService iAcademicoAppService) : base(baseUrl, userManager, signInManager)
 {
     _iAcademicoAppService = iAcademicoAppService;
 }
Esempio n. 2
0
 public ACAlunoController(IAcademicoAppService academicoAppService,
                          IGeralAppService geralAppService,
                          IOptions <BaseUrl> baseUrl,
                          UserManager <ApplicationUser> userManager,
                          SignInManager <ApplicationUser> signInManager) : base(baseUrl, userManager, signInManager)
 {
     _iacademicoAppService = academicoAppService;
     _geralAppService      = geralAppService;
 }
Esempio n. 3
0
 public ACTurmaController(IOptions <BaseUrl> baseUrl, UserManager <ApplicationUser> userManager, SignInManager <ApplicationUser> signInManager,
                          IAcademicoAppService academicoAppService) : base(baseUrl, userManager, signInManager)
 {
     _iacademicoAppService = academicoAppService;
 }