CoreSpider-Employee List
EmployeeRepository _emprepo = new EmployeeRepository(); | |
// GET: Customer | |
public async Task<ActionResult> Index() | |
{ | |
List<Employee> _empList =await _emprepo.GetEmployeeList() as List<Employee>; | |
return View(_empList); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment