コード例 #1
0
 public AuthController(StudentRegisterDBContext context, UserManager <User> userManager, SignInManager <User> signInManager, IConfiguration config)
 {
     this.context       = context;
     this.userManager   = userManager;
     this.signInManager = signInManager;
     this.config        = config;
 }
コード例 #2
0
 public StudentService(StudentRegisterDBContext context)
 {
     this.context = context;
 }
コード例 #3
0
 public NationalityService(StudentRegisterDBContext context)
 {
     this.context = context;
 }
コード例 #4
0
 public FacultyService(StudentRegisterDBContext context)
 {
     this.context = context;
 }
コード例 #5
0
ファイル: GenericRepository.cs プロジェクト: musa998/fmi-pu
 public GenericRepository(StudentRegisterDBContext context)
 {
     this.context = context;
     this.dbSet   = context.Set <TEntity>();
 }