This is the code I have:
public class BusinessLayer
{
public Employee[] GetAllEmployees()
{
Employee[] employees;
DataSet myDataSet = DataBaseLayer.GetAllEmployees();
/// How can I convert the myDataSet to Employee List
return employees;
}
}