コード例 #1
0
        public List <EntClsEditorial> listEditorial()
        {
            CntClsEditorial cnt_editorial = new CntClsEditorial();

            return(cnt_editorial.listEditorial());
        }
コード例 #2
0
        public List <EntClsEditorial> EditorialList()
        {
            CntClsEditorial cnt_edit = new CntClsEditorial();

            return(cnt_edit.EditorialList());
        }
コード例 #3
0
        public EntClsEditorial checkEditorialForId(int id)
        {
            CntClsEditorial cnt_edit = new CntClsEditorial();

            return(cnt_edit.listEditorialForid(id));
        }
コード例 #4
0
        public EntClsEditorial checkEditorial(string name)
        {
            CntClsEditorial cnt_edit = new CntClsEditorial();

            return(cnt_edit.CheckEditorial(name));
        }
コード例 #5
0
        public int insertEditorial(string name, string country, string city)
        {
            CntClsEditorial cnt_edit = new CntClsEditorial();

            return(cnt_edit.insertEditorial(name, country, city));
        }
コード例 #6
0
        public List <EntClsEditorial> valEdit(int id)
        {
            CntClsEditorial cnt_edit = new CntClsEditorial();

            return(cnt_edit.valEdit(id));
        }
コード例 #7
0
        public int deleteEditorial(int id)
        {
            CntClsEditorial cnt_edit = new CntClsEditorial();

            return(cnt_edit.deleteEditorial(id));
        }
コード例 #8
0
        public int updateEditorial(int id, string name, string country, string city)
        {
            CntClsEditorial cnt_edit = new CntClsEditorial();

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