Ejemplo n.º 1
0
        public void DeleteBook(Book book)
        {
            DBAL_Library dbal_Library = new DBAL_Library();

            dbal_Library.DeleteBook(book);
        }
Ejemplo n.º 2
0
        public void EditBook(Book book)
        {
            DBAL_Library dbal_Library = new DBAL_Library();

            dbal_Library.EditBook(book);
        }
Ejemplo n.º 3
0
        public void CreateUser(User user)
        {
            DBAL_Library dbal_Library = new DBAL_Library();

            dbal_Library.CreateUser(user);
        }
Ejemplo n.º 4
0
        public void CreateBook(Book book)
        {
            DBAL_Library dbal_Library = new DBAL_Library();

            dbal_Library.CreateBook(book);
        }
Ejemplo n.º 5
0
        public List <User> GetUserList()
        {
            DBAL_Library dbal_Library = new DBAL_Library();

            return(dbal_Library.GetUserList());
        }
Ejemplo n.º 6
0
        public List <Book> GetBookList()
        {
            DBAL_Library dbal_Library = new DBAL_Library();

            return(dbal_Library.GetBookList());
        }