public IQueryable <DepartmentViewModel> GetDepartments() { try { return(_employee.GetDeptsAtBL()); } catch (Exception) { throw; } }
public void TestEmpDepts() { var empBL = new EmpBL(); Assert.AreNotEqual(null, _employee.GetDeptsAtBL()); }