Mercurial > pub > bltoolkit
view Source/Mapping/TextDataListMapper.cs @ 7:99cd4f3947d8
Закомментированы строки мешающие добавлению авиа дежурств.
author | nickolay |
---|---|
date | Fri, 27 Oct 2017 18:26:29 +0300 |
parents | f990fcb411a9 |
children |
line wrap: on
line source
using BLToolkit.Reflection; namespace BLToolkit.Mapping { public class TextDataListMapper : IMapDataDestinationList { public TextDataListMapper(TextDataMapper mapper) { _mapper = mapper; } public TextDataListMapper(TextDataWriter writer) : this(new TextDataMapper(writer)) { } private readonly TextDataMapper _mapper; #region IMapDataDestinationList Members void IMapDataDestinationList.InitMapping(InitContext initContext) { } IMapDataDestination IMapDataDestinationList.GetDataDestination(InitContext initContext) { return _mapper; } object IMapDataDestinationList.GetNextObject(InitContext initContext) { return _mapper.Writer; } void IMapDataDestinationList.EndMapping(InitContext initContext) { _mapper.WriteEnd(); } #endregion } }