public StudentsController(StudentService studentService,
                           UserManager <IdentityUser> userManager,
                           SignInManager <IdentityUser> signInManager,
                           GASFContext context)
 {
     this.studentService = studentService;
     this.signInManager  = signInManager;
     this.userManager    = userManager;
     this.context        = context;
 }
 public RepositoryBase(GASFContext repositoryContext)
 {
     this.RepositoryContext = repositoryContext;
 }
Ejemplo n.º 3
0
 public SecretaryRepository(GASFContext repositoryContext)
     : base(repositoryContext)
 {
 }
Ejemplo n.º 4
0
 public CourseRepository(GASFContext repositoryContext)
     : base(repositoryContext)
 {
 }
Ejemplo n.º 5
0
 public StudentRepository(GASFContext repositoryContext)
     : base(repositoryContext)
 {
 }
 public CourseAttendanceRepository(GASFContext repositoryContext)
     : base(repositoryContext)
 {
 }
 public RepositoryWrapper(GASFContext repositoryContext)
 {
     _repoContext = repositoryContext;
 }
Ejemplo n.º 8
0
 public CourseMaterialRepository(GASFContext repositoryContext)
     : base(repositoryContext)
 {
 }
Ejemplo n.º 9
0
 public TeacherRepository(GASFContext repositoryContext)
     : base(repositoryContext)
 {
 }