Example #1
0
 public SpatialRecordMapper(IRepresentationValueInterpolator representationValueInterpolator, ISectionMapper sectionMapper, IWorkingDataMapper workingDataMapper, TaskDataMapper taskDataMapper)
 {
     _representationValueInterpolator = representationValueInterpolator;
     _workingDataMapper = workingDataMapper;
     _sectionMapper     = sectionMapper;
     _taskDataMapper    = taskDataMapper;
 }
Example #2
0
 public OperationDataMapper(IXmlReader xmlReader, IBinaryReader binaryReader, ISpatialRecordMapper spatialRecordMapper, ISectionMapper sectionMapper, IUniqueIdMapper uniqueIdMapper)
 {
     _spatialRecordMapper = spatialRecordMapper;
     _sectionMapper       = sectionMapper;
     _uniqueIdMapper      = uniqueIdMapper;
     _xmlReader           = xmlReader;
     _binaryReader        = binaryReader;
 }
Example #3
0
 public OperationDataMapper(IXmlReader xmlReader, IBinaryReader binaryReader, ISpatialRecordMapper spatialRecordMapper, ISectionMapper sectionMapper, IUniqueIdMapper uniqueIdMapper)
 {
     _spatialRecordMapper = spatialRecordMapper;
     _sectionMapper = sectionMapper;
     _uniqueIdMapper = uniqueIdMapper;
     _xmlReader = xmlReader;
     _binaryReader = binaryReader;
 }
        public ScriptMapper(IUserMapper userMapper, IOptionsMapper optionsMapper,
                            ISectionMapper sectionMapper, ICookieParser cookieParser)
        {
            userMapper.CheckForNull("userMapper");
            optionsMapper.CheckForNull("optionsMapper");
            sectionMapper.CheckForNull("sectionMapper");

            _userMapper    = userMapper;
            _optionsMapper = optionsMapper;
            _sectionMapper = sectionMapper;
            _cookieParser  = cookieParser;
        }