Example #1
0
 public List <Person> GetAll()
 {
     return(_personDal.GetAll());
 }
Example #2
0
 public IDataResult <List <Person> > GetAll()
 {
     return(new SuccessDataResult <List <Person> >(_personDal.GetAll()));
 }
Example #3
0
 public async Task <List <Person> > GetAll()
 {
     return(await _personDal.GetAll());
 }