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