Beispiel #1
0
 public List <CarBrand> GetAll()
 {
     return(_carBrandDal.GetAll());
 }
Beispiel #2
0
 public IDataResult <List <Brand> > GetAll()
 {
     return(new SuccessDataResult <List <Brand> >(_carBrandDal.GetAll()));
 }
 public IDataResult <List <CarBrand> > GetAll()
 {
     return(new SuccessDataResult <List <CarBrand> >(_carBrandDal.GetAll(), CarBrandMessages.CarBrandListed));
 }