예제 #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"));
 }