public CourseDefinitionsController(PortalTemeContext context, ICacheService cache, ICourseMapper courseMapper, IUrlSlugService slugService)
 {
     _context          = context;
     this.cache        = cache;
     this.courseMapper = courseMapper;
     this.slugService  = slugService;
 }
示例#2
0
 public AssignmentsController(PortalTemeContext context, UserManager <User> userManager, IAuthorizationService authorizationService, IAssignmentMapper assignmentMapper, ITaskMapper taskMapper, IUrlSlugService slugService)
 {
     _context                  = context;
     this.userManager          = userManager;
     this.authorizationService = authorizationService;
     this.assignmentMapper     = assignmentMapper;
     this.taskMapper           = taskMapper;
     this.slugService          = slugService;
 }
 public OrganisationServiceDependencies(IUserService userService,
                                        IStorageService storageService,
                                        ILinqService linqService,
                                        IUrlSlugService urlSlugService)
 {
     UserService    = userService;
     StorageService = storageService;
     LinqService    = linqService;
     UrlSlugService = urlSlugService;
 }
示例#4
0
 public PageService(IRepository <Page> pageRepository, IUrlSlugService urlSlugService)
 {
     _pageRepository = pageRepository;
     _urlSlugService = urlSlugService;
 }
示例#5
0
 public BrandService(IRepository <Brand> brandRepository, IUrlSlugService urlSlugService)
 {
     _brandRepository = brandRepository;
     _urlSlugService  = urlSlugService;
 }
示例#6
0
 public CategoryService(IRepository <Category> categoryRepository, IUrlSlugService urlSlugService)
 {
     this.categoryRepository = categoryRepository;
     this.urlSlugService     = urlSlugService;
 }
示例#7
0
 public CategoryService(IRepository <Category> categoryRepository, IUrlSlugService urlSlugService)
 {
     _categoryRepository = categoryRepository;
     _urlSlugService     = urlSlugService;
 }
示例#8
0
 public CategoryService(IRepository<Category> categoryRepository, IUrlSlugService urlSlugService)
 {
     this.categoryRepository = categoryRepository;
     this.urlSlugService = urlSlugService;
 }
示例#9
0
 public ProductService(IRepository <Product> productRepository, IUrlSlugService urlSlugService)
 {
     _productRepository = productRepository;
     _urlSlugService    = urlSlugService;
 }
示例#10
0
 public ProductService(IRepository <Product> productRepository, IUrlSlugService urlSlugService)
 {
     this.productRepository = productRepository;
     this.urlSlugService    = urlSlugService;
 }
示例#11
0
 public BrandService(IRepository <Brand> brandRepository, IUrlSlugService urlSlugService)
 {
     this.brandRepository = brandRepository;
     this.urlSlugService  = urlSlugService;
 }
示例#12
0
 public BrandService(IRepository<Brand> brandRepository, IUrlSlugService urlSlugService)
 {
     this.brandRepository = brandRepository;
     this.urlSlugService = urlSlugService;
 }
示例#13
0
 public PageService(IRepository <Page> pageRepository, IUrlSlugService urlSlugService)
 {
     this.pageRepository = pageRepository;
     this.urlSlugService = urlSlugService;
 }