Exemplo n.º 1
0
 public ConfigDetailModel(IConfigDetailService configDetailService, IConfigChartService configChartService, IConfigGroupService configGroupService, IProductService productService)
 {
     _configDetailService = configDetailService;
     _configChartService  = configChartService;
     _configGroupService  = configGroupService;
     _productService      = productService;
 }
Exemplo n.º 2
0
 public ProductModel(IProductService productService, IConfigGroupService configGroupService, IConfigChartService configChartService, IConfigDetailService configDetailService, ICommentService commentService)
 {
     _productService      = productService;
     _configGroupService  = configGroupService;
     _configChartService  = configChartService;
     _configDetailService = configDetailService;
     _commentService      = commentService;
 }
Exemplo n.º 3
0
 public DefaultController(AppUserManager userManager, AppSignInManager signInManager, IProductService productService, IConfigDetailService configDetailService, IConfigChartService configChartService)
 {
     _userManager         = userManager;
     _signInManager       = signInManager;
     _productService      = productService;
     _configDetailService = configDetailService;
     _configChartService  = configChartService;
 }
Exemplo n.º 4
0
 public ConfigGroupService(ApplicationDbContext context, IConfigChartService configChartService, IConfigDetailService configDetailService)
 {
     _context             = context;
     _configChartService  = configChartService;
     _configDetailService = configDetailService;
 }