예제 #1
0
 public UnitOfWork(SISContext context, IMapper mapper)
 {
     _context                     = context;
     _mapper                      = mapper;
     studentRepository            = new StudentRepository(_context, _mapper);
     departmentCategoryRepository = new DepartmentCategoryRepository(_context, _mapper);
 }
 public AuthRepository(IMapper mapper, SISContext context,
                       UserManager <UserEntity> userManager, SignInManager <UserEntity> signInManager)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _mapper        = mapper;
     _context       = context;
 }
예제 #3
0
 public TeachingAssignmentController(SISContext context)
 {
     _context = context;
 }
 public PersonalityRepository(SISContext context, IMapper mapper, UserManager <UserEntity> userManager)
 {
     _context     = context;
     _mapper      = mapper;
     _userManager = userManager;
 }
예제 #5
0
 public DepartmentCategoryRepository(SISContext context, IMapper mapper) : base(context, mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #6
0
 public WishlistRepository(SISContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #7
0
 public ApplicationRepository(SISContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public InterestsRepository(SISContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public PlaylistCollectionRepository(SISContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #10
0
 public StudentController(SISContext context)
 {
     _context = context;
 }
예제 #11
0
 public InstructorController(SISContext context)
 {
     _context = context;
 }
예제 #12
0
 public PersonRepository(SISContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #13
0
 public StudyTermController(SISContext context)
 {
     _context = context;
 }
예제 #14
0
 public RegistrationController(SISContext context)
 {
     _context = context;
 }
 public PurchaseRepository(SISContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #16
0
 public CustomerRepository(SISContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #17
0
 public StudentRepository(SISContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public PaintingRepository(SISContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #19
0
 public CoursesController(SISContext context)
 {
     _context = context;
 }
 public ProductRepository(SISContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #21
0
 public DepartmentController(SISContext context)
 {
     _context = context;
 }
 public NoteRepository(SISContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #23
0
 public RepositoryBase(SISContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }