Ejemplo n.º 1
0
 public static void Add(CurrentEmployeeDTO employeesTypes)
 {
     CurrentEmployeeDAL.Add(CurrentEmployeeCast.ToDAL(employeesTypes));
 }
Ejemplo n.º 2
0
 public static void Delete(CurrentEmployeeDTO employeesTypes)
 {
     CurrentEmployeeDAL.Delete(CurrentEmployeeCast.ToDAL(employeesTypes));
 }
Ejemplo n.º 3
0
 public static CurrentEmployeeDTO GetById(int id)
 {
     return(CurrentEmployeeCast.ToDTO(CurrentEmployeeDAL.GetById(id)));
 }
Ejemplo n.º 4
0
 public static List <CurrentEmployeeDTO> GetAll()
 {
     return(CurrentEmployeeCast.ListToDTO(CurrentEmployeeDAL.GetAll()));
 }