public void BenchmarkView() { obj.GetAllTask(); obj.GetAllUser(); obj.GetAllParentTask(); obj.GetAllProject(); }
public void TestGetAllUser() { int actual = businessObj.GetAllUser().Count; Assert.Greater(actual, 0); }
public List <User> GetAllUser() { return(businessObj.GetAllUser()); }