Example #1
0
 public IEnumerable <BookInfo> GetAll()
 {
     return(BaseDao.GetAll <BookInfo>("Select * from BookInfo"));
 }
Example #2
0
 public IEnumerable <Genre> GetAll()
 {
     return(BaseDao.GetAll <Genre>("Select * from Genre"));
 }
Example #3
0
 public IEnumerable <PublishingHouse> GetAll()
 {
     return(BaseDao.GetAll <PublishingHouse>("Select * from PublishingHouse"));
 }
Example #4
0
 public IEnumerable <ReadersBooks> GetAll()
 {
     return(BaseDao.GetAll <ReadersBooks>("Select * from ReadersBooks"));
 }
Example #5
0
 public IEnumerable <BookLanguage> GetAll()
 {
     return(BaseDao.GetAll <BookLanguage>("Select * from BookLanguage"));
 }
Example #6
0
 public IEnumerable <Author> GetAll()
 {
     return(BaseDao.GetAll <Author>("Select * from Author"));
 }