public CommodityUnitBll(ILogger logger, ICategoryBll categoryBll, IProductBll productBll, IStatusBll statusBll, IStoreBll storeBll, IVendorBll vendorBll, ICommodityUnitDao commodityUnitDao)
 {
     _logger           = logger;
     _categoryBll      = categoryBll;
     _productBll       = productBll;
     _statusBll        = statusBll;
     _storeBll         = storeBll;
     _vendorBll        = vendorBll;
     _commodityUnitDao = commodityUnitDao;
 }
 public ArticleClientController(IArticleBll articleBll, IStoreBll storeBll)
 {
     this._articleBll = articleBll;
     this._storeBll   = storeBll;
 }
Пример #3
0
 public StoreController(IStoreBll storeBll)
 {
     this._storeBll = storeBll;
 }