Esempio n. 1
0
 public ProductController(IProductInfoAppService appService, IHostingEnvironment hostingEnvironment, ISessionAppService sessionAppService, IIDentityCodeRepository identityCodeRepository, IRepository <ProductInfo> productRepository)
 {
     _appService             = appService;
     _hostingEnvironment     = hostingEnvironment;
     _sessionAppService      = sessionAppService;
     _identityCodeRepository = identityCodeRepository;
     _productRepository      = productRepository;
 }
Esempio n. 2
0
 public CreateModalModel(IProductInfoAppService service)
 {
     _service = service;
 }
Esempio n. 3
0
 public TaskController(IGenerateTaskAppService appService, IProductInfoAppService productInfoAppService)
 {
     _appService     = appService;
     _productService = productInfoAppService;
 }
Esempio n. 4
0
 public EditModalModel(IProductInfoAppService service)
 {
     _service = service;
 }