Exemplo n.º 1
0
        public void TestGetEmps()
        {
            var emps = _empManager.GetEmpsBAL();

            Assert.IsAssignableFrom <IQueryable <EmployeeViewModel> >(emps);
            Assert.NotNull(emps);
        }
Exemplo n.º 2
0
 public IQueryable <EmployeeViewModel> GetEmployees()
 {
     try
     {
         return(_empManager.GetEmpsBAL());
     }
     catch (Exception)
     {
         throw;
     }
 }