コード例 #1
0
 public StudentsController(StudentService studentService,
                           UserManager <IdentityUser> userManager,
                           SignInManager <IdentityUser> signInManager,
                           GASFContext context)
 {
     this.studentService = studentService;
     this.signInManager  = signInManager;
     this.userManager    = userManager;
     this.context        = context;
 }
コード例 #2
0
 public RepositoryBase(GASFContext repositoryContext)
 {
     this.RepositoryContext = repositoryContext;
 }
コード例 #3
0
 public SecretaryRepository(GASFContext repositoryContext)
     : base(repositoryContext)
 {
 }
コード例 #4
0
 public CourseRepository(GASFContext repositoryContext)
     : base(repositoryContext)
 {
 }
コード例 #5
0
 public StudentRepository(GASFContext repositoryContext)
     : base(repositoryContext)
 {
 }
コード例 #6
0
 public CourseAttendanceRepository(GASFContext repositoryContext)
     : base(repositoryContext)
 {
 }
コード例 #7
0
 public RepositoryWrapper(GASFContext repositoryContext)
 {
     _repoContext = repositoryContext;
 }
コード例 #8
0
 public CourseMaterialRepository(GASFContext repositoryContext)
     : base(repositoryContext)
 {
 }
コード例 #9
0
 public TeacherRepository(GASFContext repositoryContext)
     : base(repositoryContext)
 {
 }