Пример #1
0
        public Boolean DeleteZone(string strDivision, string strZone)
        {
            Boolean bRespost = false;

            Class.Catalogos.CatZone clsCatZone = new Class.Catalogos.CatZone();
            clsCatZone.strDivision = strDivision;
            clsCatZone.strZone     = strZone;
            clsCatZone.intActivo   = 0;
            bRespost = clsCatZone.DeleteZone();
            return(bRespost);
        }