AgGateway.ADAPT.ISOv4Plugin.ExportMappers.CropZoneMapper.Map C# (CSharp) Метод

Map() публичный Метод

public Map ( List cropZones, List isoFields, string>.Dictionary keyToIsoId, Catalog setupCatalog ) : IEnumerable
cropZones List
isoFields List
keyToIsoId string>.Dictionary
setupCatalog Catalog
Результат IEnumerable
        public IEnumerable<PFD> Map(List<CropZone> cropZones, List<PFD> isoFields, Dictionary<int, string> keyToIsoId, Catalog setupCatalog)
        {
            if(cropZones == null)
                return null;
            int cropZoneIndex = isoFields.Count;
            return cropZones.Select(x => Map(x, keyToIsoId, cropZoneIndex++, setupCatalog));
        }

Same methods

CropZoneMapper::Map ( CropZone cropZone, string>.Dictionary keyToIsoId, int cropZoneIndex, Catalog setupCatalog ) : PFD
CropZoneMapper