Esempio n. 1
0
 public IDataResult <List <Contact> > GetAll()
 {
     return(new SuccessDataResult <List <Contact> >(_contactDal.GetAll()));
 }
Esempio n. 2
0
 public List <Contact> GetAll()
 {
     return(_contactDal.GetAll());
 }
Esempio n. 3
0
 public IDataResult <List <Contact> > GetAll()
 {
     return(new  SuccessDataResult <List <Contact> >(_contactDal.GetAll(), Messages.ContactListed));
 }
Esempio n. 4
0
 public List <Contact> GetAll(Expression <Func <Contact, bool> > filter = null)
 {
     return(_contactDal.GetAll());
 }
Esempio n. 5
0
 /* Butun Mesajlari Getirme */
 public List <Contact> GetAllContactMessages()
 {
     return(_contactDal.GetAll());
 }
Esempio n. 6
0
 public List <Entities.Contact> GetAll()
 {
     return(_contactDal.GetAll());
 }
 public ICollection <Contact> GetAll(Expression <Func <Contact, bool> > filter = null) =>
 _contactDal.GetAll(filter);