Example #1
0
 public IDataResult <List <Country> > GetAll()
 {
     return(new SuccessDataResult <List <Country> >(_countryDal.GetAll(), Messages.RecordListed));
 }
 public IDataResult <List <Country> > GetAll()
 {
     //İş kodları
     return(new SuccessDataResult <List <Country> >(_countryDal.GetAll()));
 }
 public List <Country> GetAll()
 {
     return(_CountryDal.GetAll());
 }
 public IDataResult <List <Country> > GetAll()
 {
     return(new SuccessDataResult <List <Country> >(_countryDal.GetAll(), BusinessMessages.CountriesListed));
 }