public MyComponentsController
 (
     UserManager <ApplicationUser> userManager,
     IMapper mapper,
     IComponentTypeService componentTypeService,
     IUnitMultiplierService unitMultiplierService,
     IStaticSiteInfoService staticSiteInfoService,
     IUserComponentTypeService userComponentTypeService,
     IUserComponentTypeDetailService userComponentTypeDetailService,
     IComponentTypeDetailService componentTypeDetailService,
     ICloudinaryService cloudinaryService
 )
 {
     _userManager                    = userManager;
     _mapper                         = mapper;
     _componentTypeService           = componentTypeService;
     _unitMultiplierService          = unitMultiplierService;
     _staticSiteInfoService          = staticSiteInfoService;
     _userComponentTypeService       = userComponentTypeService;
     _userComponentTypeDetailService = userComponentTypeDetailService;
     _componentTypeDetailService     = componentTypeDetailService;
     _cloudinaryService              = cloudinaryService;
 }
예제 #2
0
 public UserComponentTypeDetailServiceTests()
 {
     _userComponentTypeDetailService = new UserComponentTypeDetailService(SCManagerDbContext);
 }