private string GetDefaultInfoZone(IZone zone)
        {
            string name       = "Nombre: " + zone.GetName() + "\n";
            string category   = "Tipo: " + zone.GetCategory() + "\n";
            string territory  = "Territoria: " + zone.GetTerritory() + "\n";
            string resolution = zone.GetResolution() + "\n";
            string infoZone   = name + category + territory + resolution;

            return(infoZone);
        }