// GET: Employees
 public ActionResult Index()
 {
     return(View(EmployeesDAL.GetAll()));
 }
예제 #2
0
 public static List <EmployeesDTO> GetAll()
 {
     return(EmployeesCast.ListToDTO(EmployeesDAL.GetAll()));
 }