Exemple #1
0
 IEnumerable <IssuedBookView> ICanGetAll <IssuedBookView> .GetAll()
 {
     using (var db = new LibraryDbContext())
     {
         return(db.Query <IssuedBookView>().ToList());
     }
 }