public StatisticsBusiness()
 {
     _productRepository      = new ProductRepository();
     _saleBillRepository     = new SaleBillRepository();
     _purchaseBillRepository = new PurchaseBillRepository();
 }
 public EndOfShiftBusiness()
 {
     _endOfShiftRepository = new EndOfShiftRepository();
     _saleBillRepository   = new SaleBillRepository();
 }
 public SaleBillBusiness()
 {
     _saleBillRepository       = new SaleBillRepository();
     _saleBillDetailRepository = new SaleBillDetailRepository();
 }