예제 #1
0
 public CreateCourseCommandHandler(IMapper mapper, StARKSDbContext context)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public DeleteStudentCommandHandlerTest(ServiceCollectionFixture serviceCollection, StARKSDbContextFixture dbContextFixture)
 {
     this.context         = dbContextFixture.Instance;
     this.autoMapper      = serviceCollection.AutoMapperFixture.Instance;
     this.queryValidatior = new DeleteStudentCommandValidator();
 }
예제 #3
0
 public CourseRepository(StARKSDbContext dbContext) : base(dbContext)
 {
 }
 public GetStudentsWithPassedCoursesQueryHandlerTest(ServiceCollectionFixture serviceCollection, StARKSDbContextFixture dbContextFixture)
 {
     this.context    = dbContextFixture.Instance;
     this.autoMapper = serviceCollection.AutoMapperFixture.Instance;
 }
예제 #5
0
 public GetStudentsWithPassedCoursesQueryHandler(IMapper mapper, StARKSDbContext context)
 {
     this.context = context;
     this.mapper  = mapper;
 }
예제 #6
0
 public GetCoursesQueryHandler(IMapper mapper, StARKSDbContext context)
 {
     this.context = context;
 }
예제 #7
0
 public DeleteStudentCommandHandler(StARKSDbContext context)
 {
     this.context = context;
 }
예제 #8
0
 public StudentRepository(StARKSDbContext dbContext) : base(dbContext)
 {
 }
예제 #9
0
 public GetCoursesQueryTest(ServiceCollectionFixture serviceCollection, StARKSDbContextFixture dbContextFixture)
 {
     this.context    = dbContextFixture.Instance;
     this.autoMapper = serviceCollection.AutoMapperFixture.Instance;
 }
예제 #10
0
 public DeleteCourseCommandHandler(StARKSDbContext context)
 {
     this.context = context;
 }
예제 #11
0
 public CreateOrUpdateEnrollmentCommandHandlerTest(ServiceCollectionFixture serviceCollection, StARKSDbContextFixture dbContextFixture)
 {
     this.context         = dbContextFixture.Instance;
     this.autoMapper      = serviceCollection.AutoMapperFixture.Instance;
     this.queryValidatior = new CreateOrUpdateEnrollmentCommandValidator();
 }
 public CreateOrUpdateEnrollmentCommandHandler(StARKSDbContext context)
 {
     this.context = context;
 }
예제 #13
0
 public UpdateStudentCommandHandler(IMapper mapper, StARKSDbContext context)
 {
     this.context = context;
     this.mapper  = mapper;
 }
예제 #14
0
 public MarksRepository(StARKSDbContext dbContext) : base(dbContext)
 {
 }