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