public List <EntClsEditorial> listEditorial()
        {
            CntClsEditorial cnt_editorial = new CntClsEditorial();

            return(cnt_editorial.listEditorial());
        }
        public List <EntClsEditorial> EditorialList()
        {
            CntClsEditorial cnt_edit = new CntClsEditorial();

            return(cnt_edit.EditorialList());
        }
        public EntClsEditorial checkEditorialForId(int id)
        {
            CntClsEditorial cnt_edit = new CntClsEditorial();

            return(cnt_edit.listEditorialForid(id));
        }
        public EntClsEditorial checkEditorial(string name)
        {
            CntClsEditorial cnt_edit = new CntClsEditorial();

            return(cnt_edit.CheckEditorial(name));
        }
        public int insertEditorial(string name, string country, string city)
        {
            CntClsEditorial cnt_edit = new CntClsEditorial();

            return(cnt_edit.insertEditorial(name, country, city));
        }
        public List <EntClsEditorial> valEdit(int id)
        {
            CntClsEditorial cnt_edit = new CntClsEditorial();

            return(cnt_edit.valEdit(id));
        }
        public int deleteEditorial(int id)
        {
            CntClsEditorial cnt_edit = new CntClsEditorial();

            return(cnt_edit.deleteEditorial(id));
        }
        public int updateEditorial(int id, string name, string country, string city)
        {
            CntClsEditorial cnt_edit = new CntClsEditorial();

            return(cnt_edit.updateEditorial(id, name, country, city));
        }