Ejemplo n.º 1
0
        public int deleteAuthor(int id)
        {
            CntClsAuthor cnt_author = new CntClsAuthor();

            return(cnt_author.deleteAuthor(id));
        }
Ejemplo n.º 2
0
        public int updateAuthor(int id, string name, string lastName, string nationality)
        {
            CntClsAuthor cnt_author = new CntClsAuthor();

            return(cnt_author.updateAuthor(id, name, lastName, nationality));
        }
Ejemplo n.º 3
0
        public EntClsAuthor checkAuthorForId(int id)
        {
            CntClsAuthor cnt_author = new CntClsAuthor();

            return(cnt_author.CheckAuthorForId(id));
        }
Ejemplo n.º 4
0
        public List <EntClsAuthor> AuthorList()
        {
            CntClsAuthor cnt_author = new CntClsAuthor();

            return(cnt_author.AuthorList());
        }
Ejemplo n.º 5
0
        public EntClsAuthor checkAuthor(string name, string lastName)
        {
            CntClsAuthor cnt_author = new CntClsAuthor();

            return(cnt_author.CheckAuthor(name, lastName));
        }
Ejemplo n.º 6
0
        public int insertAuthor(string name, string lastName, string nationality)
        {
            CntClsAuthor cnt_author = new CntClsAuthor();

            return(cnt_author.insertAuthor(name, lastName, nationality));
        }