Ejemplo n.º 1
0
 public SectionService(IMapper mapper, DataContext context, IHttpContextAccessor httpContextAccessor, IProjectGroupService projectGroupService)
 {
     _projectGroupService = projectGroupService;
     _httpContextAccessor = httpContextAccessor;
     _context             = context;
     _mapper = mapper;
 }
Ejemplo n.º 2
0
 public MergeRequestService(IMapper mapper, DataContext context, IHttpContextAccessor httpContextAccessor, IWebHostEnvironment hostingEnvironment, IProjectGroupService projectGroupService)
 {
     _projectGroupService = projectGroupService;
     _httpContextAccessor = httpContextAccessor;
     _context             = context;
     _mapper             = mapper;
     _hostingEnvironment = hostingEnvironment;
 }
Ejemplo n.º 3
0
 public CourseService(IMapper mapper, DataContext context, IHttpContextAccessor httpContextAccessor, IAssignmentService assignmentService, IProjectGroupService projectGroupService, ISectionService sectionService)
 {
     _sectionService      = sectionService;
     _projectGroupService = projectGroupService;
     _assignmentService   = assignmentService;
     _httpContextAccessor = httpContextAccessor;
     _projectGroupService = projectGroupService;
     _context             = context;
     _mapper = mapper;
 }
 public AbstractProjectGroupController(
     ApiSettings settings,
     ILogger <AbstractProjectGroupController> logger,
     ITransactionCoordinator transactionCoordinator,
     IProjectGroupService projectGroupService,
     IApiProjectGroupModelMapper projectGroupModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.ProjectGroupService     = projectGroupService;
     this.ProjectGroupModelMapper = projectGroupModelMapper;
 }
Ejemplo n.º 5
0
 public ProjectGroupController(
     ApiSettings settings,
     ILogger <ProjectGroupController> logger,
     ITransactionCoordinator transactionCoordinator,
     IProjectGroupService projectGroupService,
     IApiProjectGroupModelMapper projectGroupModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            projectGroupService,
            projectGroupModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }
Ejemplo n.º 6
0
 public ProjectGroupController(IProjectGroupService projectGroupService)
 {
     _projectGroupService = projectGroupService;
 }