Exemplo n.º 1
0
        public bool Insert()
        {
            try
            {
            objclsCONTACT_LIST = new Contact_list();

            objclsCONTACT_LIST.LISTID = LISTID;
            objclsCONTACT_LIST.SUBSCRIBES = SUBSCRIBES;

            if(objclsCONTACT_LIST.Insert())
            {
                return true;
            }
            return false;
            }
            catch(Exception ex)
            {
            throw new Exception(ex.Message);
            }
        }