public DashboardController(TransactionStore transactionStore, UserStore userStore)
 {
     this.transactionStore = transactionStore;
     this.userStore = userStore;
     this.rowsForTabbedTable = 6;
     businessId = (string)System.Web.HttpContext.Current.Session["id"];
 }
 public EcommerceController(TransactionStore transactionStore)
 {
     this.transactionStore = transactionStore;
 }
 public TransactionsController(TransactionStore transactionStore)
 {
     this.transactionStore = transactionStore;
 }