示例#1
0
 public IQueryable <DepartmentViewModel> GetDepartments()
 {
     try
     {
         return(_employee.GetDeptsAtBL());
     }
     catch (Exception)
     {
         throw;
     }
 }
示例#2
0
        public void TestEmpDepts()
        {
            var empBL = new EmpBL();

            Assert.AreNotEqual(null, _employee.GetDeptsAtBL());
        }