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