コード例 #1
0
 public IList <Ogrenci> GetAll()
 {
     return(_ogrenciDal.GetAll());
 }
コード例 #2
0
 public IDataResult <List <Ogrenci> > GetAll()
 {
     return(new SuccessDataResult <List <Ogrenci> >(_ogrenciDal.GetAll(), Messages.Listed));
 }