public IList <Ogrenci> GetAll() { return(_ogrenciDal.GetAll()); }
public IDataResult <List <Ogrenci> > GetAll() { return(new SuccessDataResult <List <Ogrenci> >(_ogrenciDal.GetAll(), Messages.Listed)); }