public List <Task> GetAll()
 {
     return(_taskDal.GetAll());
 }
 public async Task <List <Tasks> > GetAll(Expression <Func <Tasks, bool> > predicate)
 {
     return(await _taskDal.GetAll(predicate));
 }
Exemple #3
0
 //To list all tasks
 public List <Task> GetTasks() => _taskDal.GetAll();
Exemple #4
0
 public IList <ToDoTask> GetAll()
 {
     return(_taskDal.GetAll(x => x.IsDeleted != true));
 }
Exemple #5
0
 public List <Task_Entity> GetAll()
 {
     return(_dal.GetAll());
 }