Пример #1
0
        public Boolean NewZoneByDiv(string strdivision, string strNewCveZone, string strNewZone, string strNewObservations)
        {
            Boolean bRespost = false;

            if (!string.IsNullOrEmpty(strNewZone))
            {
                Class.Catalogos.CatZone clsCatZone = new Class.Catalogos.CatZone();
                clsCatZone.strDivision    = strdivision;
                clsCatZone.strZone        = strNewZone;
                clsCatZone.strCveZone     = strNewCveZone;
                clsCatZone.strObservation = strNewObservations;
                bRespost = clsCatZone.NewZoneByDiv();
            }
            return(bRespost);
        }