コード例 #1
0
 public StudentController(ks54AISContext _context)
 {
     //this.context = _context;
     studentRepository = new StudentRepository(_context);
     groupRepository   = new GroupRepository(_context);
     excelHelper       = new ExcelHelper(_context);
 }
コード例 #2
0
 public RoadMapController(ks54AISContext _context)
 {
     //this.context = _context;
     roadMapRepository = new RoadMapRepository(_context);
     groupRepository   = new GroupRepository(_context);
     //excelHelper = new ExcelHelper(_context);
 }
コード例 #3
0
ファイル: ExcelHelper.cs プロジェクト: DarkcTime/Hacaton54
 public ExcelHelper(ks54AISContext context = null)
 {
     if (context != null)
     {
         groupRepository  = new GroupRepository(context);
         genderRepository = new GenderRepository(context);
     }
 }
コード例 #4
0
 public GenderRepository(ks54AISContext _context)
 {
     context = _context;
 }
コード例 #5
0
 public StatementRepository(ks54AISContext _context)
 {
     this.context = _context;
 }
コード例 #6
0
 public StudentRepository(ks54AISContext _context)
 {
     context = _context;
 }
コード例 #7
0
 public RoadMapRepository(ks54AISContext _context)
 {
     this.context = _context;
 }
コード例 #8
0
 public AttestationStudentRepository(ks54AISContext _context)
 {
     context = _context;
 }
コード例 #9
0
ファイル: UserController.cs プロジェクト: DarkcTime/Hacaton54
 public UserController(ks54AISContext _context)
 {
     userRepository = new UserRepository(_context);
 }
コード例 #10
0
 public GroupRepository(ks54AISContext _context)
 {
     context = _context;
 }