Esempio n. 1
0
 public ProductsController(IProductService productService, IMakerService makerService, IProductDataService productDataService, IPropertyService propertyService, IImageService imageService)
 {
     _productService     = productService;
     _makerService       = makerService;
     _productDataService = productDataService;
     _propertyService    = propertyService;
     _imageService       = imageService;
 }
Esempio n. 2
0
 public ImagesController(ICategoryService categoryService, IImageService imageService, ISubcategoryService subcategoryService, IMakerService makerService, IProductService productService)
 {
     _categoryService    = categoryService;
     _imageService       = imageService;
     _subcategoryService = subcategoryService;
     _makerService       = makerService;
     _productService     = productService;
 }
Esempio n. 3
0
 public MakersController(IMakerService makerService, IImageService imageService)
 {
     _makerService = makerService;
     _imageService = imageService;
 }
Esempio n. 4
0
 /// <summary>
 /// Home controller constructor.
 /// </summary>
 public HomeController()
 {
     vehicleService  = new VehicleService();
     categoryService = new CategoryService();
     makerService    = new MakerService();
 }
Esempio n. 5
0
 public MakerVMService(IMakerService movieService, IMapper mapper)
 {
     _service = movieService;
     _mapper  = mapper;
 }
 public MakerController(IMakerService makerService)
 {
     _makerService = makerService;
 }