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