Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using DAL.DTO;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using DAL.DAO;
- using DAL;
- namespace BLL
- {
- public class EmployeeBLL
- {
- public static EmployeeDTO GetAll()
- {
- EmployeeDTO dto = new EmployeeDTO();
- dto.Departments = DepartmentDAO.GetDepartments();
- dto.Positions = PositionDAO.GetPositions();
- return dto;
- }
- public static void AddEmployee(EMPLOYEE employee)
- {
- EmployeeDAO.AddEmployee(employee);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement