public ReportManagerControler(SellingChequeReport sellingChequeReport)
 {
     this.sellingChequeReport = sellingChequeReport;
     reportManagerImpl        = new ReportManagerImpl(sellingChequeReport);
 }
 public ReportManagerControler(BuyingChequeRreport buyingChequeRreport)
 {
     this.buyingChequeRreport = buyingChequeRreport;
     reportManagerImpl        = new ReportManagerImpl(buyingChequeRreport);
 }
 public ReportManagerControler(DailyProfit dailyProfit)
 {
     this.dailyProfit  = dailyProfit;
     reportManagerImpl = new ReportManagerImpl(dailyProfit);
 }
 public ReportManagerControler(ProfitPerItem profitPerItem)
 {
     this.profitPerItem = profitPerItem;
     reportManagerImpl  = new ReportManagerImpl(profitPerItem);
 }
 public ReportManagerControler(DailyItemSale dailyItemSale)
 {
     this.dailyItemSale = dailyItemSale;
     reportManagerImpl  = new ReportManagerImpl(dailyItemSale);
 }