コード例 #1
0
 public ProductPhotoController(IProductPhotoManager iProductPhotoManager, IProductManager iProductManager, IMapper iMapper, IHostingEnvironment iHostingEnvironment)
 {
     _iProductPhotoManager = iProductPhotoManager;
     _iProductManager      = iProductManager;
     _iMapper             = iMapper;
     _iHostingEnvironment = iHostingEnvironment;
 }
コード例 #2
0
 public ProductController(IProductManager iProductManager, ICategoryManager iCategoryManager,
                          IProductPhotoManager iProductPhotoManager)
 {
     _iProductManager      = iProductManager;
     _iCategoryManager     = iCategoryManager;
     _iProductPhotoManager = iProductPhotoManager;
 }
コード例 #3
0
 public ProductController(IProductManager iProductManager, ICategoryManager iCategoryManager, IBrandManager iBrandManager, IProductPhotoManager iProductPhotoManager, IMapper iMapper)
 {
     _iProductManager      = iProductManager;
     _iCategoryManager     = iCategoryManager;
     _iBrandManager        = iBrandManager;
     _iProductPhotoManager = iProductPhotoManager;
     _iMapper = iMapper;
 }
コード例 #4
0
 public ProductController(IProductManager iProductManager, ICategoryManager iCategoryManager,
                          IProductPhotoManager iProductPhotoManager, IInvoiceDetailsManager invoiceDetailsManager)
 {
     _iProductManager       = iProductManager;
     _iCategoryManager      = iCategoryManager;
     _iProductPhotoManager  = iProductPhotoManager;
     _invoiceDetailsManager = invoiceDetailsManager;
 }