Ejemplo n.º 1
0
        public Department getDepartmentById(int id)
        {
            DepartmentListDAL list = new DepartmentListDAL();

            //Additional BL logic would go here?
            return(list.getDepartment(id));
        }
Ejemplo n.º 2
0
        public List <Department> getDepartmentList()
        {
            DepartmentListDAL list = new DepartmentListDAL();

            //Additional BL logic would go here?
            return(list.getDepartmentList());
        }