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