public static EmployeesDTO login(string username, string password) { return(EmployeesCast.ToDTO(EmployeesDAL.Login(username, password))); }
public static EmployeesDTO GetById(int id) { return(EmployeesCast.ToDTO(EmployeesDAL.GetById(id))); }