Example #1
0
 public CategoriesController(ICategoryIndexVmService categoryService, ICategoryService service, IMapper mapper, IHostingEnvironment hostingEnvironment)
 {
     _categoryService    = categoryService;
     _service            = service;
     _mapper             = mapper;
     _hostingEnvironment = hostingEnvironment;
 }
Example #2
0
 public IndexCategory(ICategoryIndexVmService CategoryService)
 {
     _CategoryService = CategoryService;
 }
Example #3
0
 public PaymentModel(GoCafeContext context, ICategoryIndexVmService cate)
 {
     _cate    = cate;
     _context = context;
 }
Example #4
0
 public IndexOrder(IProductIndexVmService productService, ICategoryIndexVmService pro)
 {
     _pro            = pro;
     _productService = productService;
 }
Example #5
0
 public EditProduct(IProductService context, IMapper mapper, ICategoryIndexVmService categoryService)
 {
     _categoryService = categoryService;
     _mapper          = mapper;
     _context         = context;
 }
Example #6
0
 public CreateModel(IProductService context, ICategoryIndexVmService categoryService)
 {
     _categoryService = categoryService;
     _context         = context;
 }
Example #7
0
 public IndexProduct(IProductIndexVmService productService, ICategoryIndexVmService cateService)
 {
     _cateService    = cateService;
     _productService = productService;
 }