AgGateway.ADAPT.ISOv4Plugin.ExportMappers.TlgMapper.Map C# (CSharp) Method

Map() public method

public Map ( IEnumerable operationDatas, string taskDataPath, TaskDocumentWriter taskDocumentWriter ) : IEnumerable
operationDatas IEnumerable
taskDataPath string
taskDocumentWriter AgGateway.ADAPT.ISOv4Plugin.Writers.TaskDocumentWriter
return IEnumerable
        public IEnumerable<TLG> Map(IEnumerable<OperationData> operationDatas, string taskDataPath, TaskDocumentWriter taskDocumentWriter)
        {
            if (operationDatas == null)
                return Enumerable.Empty<TLG>();
            return operationDatas.Select(x => Map(x, taskDataPath, taskDocumentWriter));
        }

Same methods

TlgMapper::Map ( AgGateway.ADAPT.ApplicationDataModel.LoggedData.OperationData operationData, string taskDataPath, TaskDocumentWriter taskDocumentWriter ) : TLG