public TestController(IAppRoleService appRoleService, IAppUserService appUserService, ISchoolManagerService corporationManagerService)
 {
     _appRoleService            = appRoleService;
     _appUserService            = appUserService;
     _corporationManagerService = corporationManagerService;
 }
Beispiel #2
0
 public StudentController(ILogger <StudentController> logger, ISchoolManagerService schoolManagerService)
 {
     _logger = logger;
     _schoolManagerService = schoolManagerService;
 }