Ejemplo n.º 1
0
 public void BenchmarkView()
 {
     obj.GetAllTask();
     obj.GetAllUser();
     obj.GetAllParentTask();
     obj.GetAllProject();
 }
Ejemplo n.º 2
0
        public void TestGetAllUser()
        {
            int actual = businessObj.GetAllUser().Count;

            Assert.Greater(actual, 0);
        }
Ejemplo n.º 3
0
 public List <User> GetAllUser()
 {
     return(businessObj.GetAllUser());
 }