示例#1
0
 public ActionResult Emails()
 {
     var tablebusiness = new StudentBusiness.StudentBusiness();
     return View(tablebusiness.GetCustomerEmails("customer"));
 }
示例#2
0
 public async Task<ActionResult> IndexAsync()
 {
     var tablebusiness = new StudentBusiness.StudentBusiness();
     return View("Index", await tablebusiness.GetAllCustomersAsync("customer"));
 }
示例#3
0
 public ActionResult Index()
 {
     var tablebusiness = new StudentBusiness.StudentBusiness();
     return View(tablebusiness.GetAllCustomer("customer"));
 }