Example #1
0
 public ImageController(IImageLogic imageBLL, IProductLogic productBLL = null, IAccountLogic accountBLL = null)
 {
     this.imageBLL = imageBLL;
     this.productBLL = productBLL;
     this.accountBLL = accountBLL;
 }
Example #2
0
 public CartController(IProductLogic stub)
 {
     _productBLL = stub;
 }
Example #3
0
 public ImageController()
 {
     imageBLL = new ImageBLL();
     productBLL = new ProductBLL();
     accountBLL = new AccountBLL();
 }
 public ProductServiceSoap(IProductLogic productLogic)
 {
     this.productLogic = productLogic;
 }
Example #5
0
 public CartController()
 {
     _productBLL = new ProductBLL();
 }
Example #6
0
 public HomeController(IProductLogic productStub, ICategoryLogic categoryStub)
 {
     _productBLL = productStub;
     _categoryBLL = categoryStub;
 }
Example #7
0
 public HomeController()
 {
     _productBLL = new ProductBLL();
     _categoryBLL = new CategoryBLL();
 }
Example #8
0
 public ProductController(IProductLogic productStub, ICategoryLogic categoryStub, IAccountLogic accountBLL = null)
 {
     _productBLL = productStub;
     _categoryBLL = categoryStub;
     _accountBLL = accountBLL;
 }
Example #9
0
 public ProductController()
 {
     _productBLL = new ProductBLL();
     _categoryBLL = new CategoryBLL();
     _accountBLL = new AccountBLL();
 }
Example #10
0
 public ProductService(IProductLogic productLogic)
 {
     this._productLogic = productLogic;
 }