public IDataResult <List <Brand> > GetAll()
 {
     return(new SuccessDataResult <List <Brand> >(_iBrandDal.GetAll(), Messages.SuccessMessage));
 }
Esempio n. 2
0
 public IDataResult <List <Brand> > GetAll()
 {
     return(new SuccessDataResult <List <Brand> >(_iBrandDal.GetAll(), Messages.SuccessfullyListedObjects));
 }
Esempio n. 3
0
 public IDataResult <IEnumerable <Brand> > GetAll()
 {
     return(_brandDal.GetAll());
 }
 public IDataResult <List <BrandDto> > GetAll()
 {
     return(new SuccessDataResult <List <BrandDto> >(_mapper.Map <List <BrandDto> >(_brandDal.GetAll())));
 }
 public List <Brand> GetAll()
 {
     return(_brandDal.GetAll());
 }
Esempio n. 6
0
 public IDataResult <List <Brand> > GetAll()
 {
     return(new SuccessDataResult <List <Brand> >(_brandDal.GetAll(), "Brands selected"));
 }
Esempio n. 7
0
 public IDataResult <List <Brand> > GetAll()
 {
     return(new SuccessDataResult <List <Brand> >(_brandDal.GetAll(), "Araçlar Listelendi"));
 }
Esempio n. 8
0
 public IDataResult <List <Brand> > GetAll()
 {
     return(new DataResult <List <Brand> >(_brandDal.GetAll(), true, "Markalar Listelendi"));
 }
Esempio n. 9
0
 public IDataResult <List <Brand> > GetById(int id)
 {
     return(new SuccessDataResult <List <Brand> >(_brandDal.GetAll(b => b.BrandId == id)));
 }
Esempio n. 10
0
 public List <Brand> GetAll()
 {
     //iş kodları yazılacak
     return(_brandDal.GetAll());
 }
 public IDataResult <List <Brand> > GetAll()
 {
     //sadece data ile çalıştırma
     return(new SuccessDataResult <List <Brand> >(_brandal.GetAll(), "Markalar listelendi."));
 }
Esempio n. 12
0
 public IDataResult <List <Brand> > GetAll(Func <Brand, bool> filter = null)
 {
     return(new SuccessDataResult <List <Brand> >(Messages.Success, _dal.GetAll(filter)));
 }
Esempio n. 13
0
        public IDataResult <List <Brand> > GetAll()
        {
            var data = _brandDal.GetAll();

            return(new SuccessDataResult <List <Brand> >(data, Message.BrandsListed));
        }
Esempio n. 14
0
        public IDataResult <List <Brand> > GetAll()
        {
            var getAll = _brandDal.GetAll();

            return(new SuccessDataResult <List <Brand> >(getAll));
        }
Esempio n. 15
0
 public IDataResult <List <Brand> > GetAll()
 {
     return(new SuccessDataResult <List <Brand> >(_branddal.GetAll(), "başarılı"));
 }
Esempio n. 16
0
 public IDataResult <List <Brand> > GetAll(Expression <Func <Brand, bool> > filter = null)
 {
     return(new SuccessDataResult <List <Brand> >(_brandDal.GetAll(filter)));
 }
Esempio n. 17
0
 IDataResult <List <Brand> > IBaseService <Brand> .GetAll()
 {
     return(new SuccessDataResult <List <Brand> >(_brandDal.GetAll(), Messages.Listed));
 }
Esempio n. 18
0
 public IDataResult <List <Brand> > GetAll()
 {
     return(new SuccessDataResult <List <Brand> >(_brandDal.GetAll(p => p.BrandName.Length > 2)));
 }
Esempio n. 19
0
        public IDataResult <List <Brand> > GetAll()
        {
            var result = _brandDal.GetAll().ToList();

            return(new SuccessDataResult <List <Brand> >(result));
        }
Esempio n. 20
0
 public IDataResult <List <Brand> > GetAll()
 {
     return(new DataResult <List <Brand> >(_brandDal.GetAll(), true, "Brand Listed"));
 }
 IDataResult <List <Brand> > IBrandService.GetAll()
 {
     return(new SuccessDataResult <List <Brand> >(_brandDal.GetAll()));
 }
Esempio n. 22
0
 public IDataResult <List <Brand> > GetAll()
 {
     return(new SuccessDataResult <List <Brand> >(_brandDal.GetAll(), "Modeller listelendi!"));
 }
Esempio n. 23
0
 public IDataResult <List <Brand> > GetAll(Expression <Func <Brand, bool> > expression = null)
 {
     return(new SuccessDataResult <List <Brand> >(_brandDal.GetAll(expression), Messages.ItemsListed));
 }
Esempio n. 24
0
 public List <Brand> GetAll()
 {
     //İş kodları
     return(_brandDal.GetAll());
 }
Esempio n. 25
0
 public IDataResult <List <Brand> > GetAll()
 {
     return(new DataResult <List <Brand> >(_brandDal.GetAll(), true, Messages.CarsListed));
 }
Esempio n. 26
0
 public async Task <IDataResult <List <Brand> > > GetAll()
 {
     return(new SuccessDataResult <List <Brand> >(await _brandDal.GetAll()));
 }
Esempio n. 27
0
 public IDataResult <List <Brand> > GetAll()
 {
     return(new SuccessDataResult <List <Brand> >(_brandDal.GetAll(), Messages.BrandListed));
 }
Esempio n. 28
0
        public IDataResult <List <Brand> > GetAll()
        {
            var result = _brandDal.GetAll();

            return(new SuccessDataResult <List <Brand> >(result, Messages.Brand + Messages.Listed));
        }
Esempio n. 29
0
 public IDataResult <List <Brand> > GetAll()
 {
     return(new SuccessDataResult <List <Brand> >(_brandDal.GetAll()));
 }
Esempio n. 30
0
 IDataResult <List <Brand> > IBrandService.GetAll()
 {
     return(new DataResult <List <Brand> >(_brandDal.GetAll(), true, Messages.BrandListed));
 }