コード例 #1
0
 public DashboardController(TransactionStore transactionStore, UserStore userStore)
 {
     this.transactionStore = transactionStore;
     this.userStore = userStore;
     this.rowsForTabbedTable = 6;
     businessId = (string)System.Web.HttpContext.Current.Session["id"];
 }
コード例 #2
0
 public EcommerceController(TransactionStore transactionStore)
 {
     this.transactionStore = transactionStore;
 }
コード例 #3
0
 public TransactionsController(TransactionStore transactionStore)
 {
     this.transactionStore = transactionStore;
 }