Exemplo n.º 1
0
 public BuyOrSellManager(IStockMovementDal stockMovementDal, IProductInStoreDal productInStoreDal)
 {
     this.stockMovementDal  = stockMovementDal;
     this.productInStoreDal = productInStoreDal;
     validator  = new ProductInStoreValidation();
     validator2 = new StockMovementValidation();
 }
 public ProductInStoreManager(IProductInStoreDal productInStoreDal)
 {
     validator = new ProductInStoreValidation();
     this.productInStoreDal = productInStoreDal;
 }