Example #1
0
 public ConfigDetailModel(IConfigDetailService configDetailService, IConfigChartService configChartService, IConfigGroupService configGroupService, IProductService productService)
 {
     _configDetailService = configDetailService;
     _configChartService  = configChartService;
     _configGroupService  = configGroupService;
     _productService      = productService;
 }
Example #2
0
 public ProductModel(IProductService productService, IConfigGroupService configGroupService, IConfigChartService configChartService, IConfigDetailService configDetailService, ICommentService commentService)
 {
     _productService      = productService;
     _configGroupService  = configGroupService;
     _configChartService  = configChartService;
     _configDetailService = configDetailService;
     _commentService      = commentService;
 }
Example #3
0
 public DefaultController(AppUserManager userManager, AppSignInManager signInManager, IProductService productService, IConfigDetailService configDetailService, IConfigChartService configChartService)
 {
     _userManager         = userManager;
     _signInManager       = signInManager;
     _productService      = productService;
     _configDetailService = configDetailService;
     _configChartService  = configChartService;
 }
Example #4
0
 public DeleteModel(IConfigChartService configChartService)
 {
     _configChartService = configChartService;
 }
Example #5
0
 public IndexModel(ICategoryService categoryService, IConfigChartService configChartService, IConfigGroupService configGroupService)
 {
     _categoryService    = categoryService;
     _configChartService = configChartService;
     _configGroupService = configGroupService;
 }
Example #6
0
 public CreateModel(IConfigChartService configChartService)
 {
     _configChartService = configChartService;
 }
Example #7
0
 public ConfigGroupService(ApplicationDbContext context, IConfigChartService configChartService, IConfigDetailService configDetailService)
 {
     _context             = context;
     _configChartService  = configChartService;
     _configDetailService = configDetailService;
 }