public ProductBusiness()
 {
     _productRepository            = new ProductRepository();
     _purchaseBillDetailRepository = new PurchaseBillDetailRepository();
     _saleBillDetailRepository     = new SaleBillDetailRepository();
 }
 public SaleBillBusiness()
 {
     _saleBillRepository       = new SaleBillRepository();
     _saleBillDetailRepository = new SaleBillDetailRepository();
 }