Example #1
0
 public async Task <IDataResult <List <Country> > > GetAll()
 {
     return(new SuccessDataResult <List <Country> >(await _countryDal.GetAllAsync()));
 }