CreateConversionCollector.cs

Clone Tools
  • last updated a few seconds ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
* Refactored CreateConversionCollector to PersistenceRegistry. * Improved test coverage for PersistenceRegistry. Related to Issue [WTI-289]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@3328 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: 34a513a2db72b047511d6b2d1230f3888c2b1e30

Former-commit-id: 0d6c9dc4e4ae72d7aa369a87ddf3f0bf20418f29

  1. … 57 more files in changeset.
* Removed UpdateConversionCollector and replaced with CreateConversionCollector. ** Extended CreateConversionCollector with RemoveUntouched method. * Surface lines are now being persisted. * RingtoetsPipingSurfaceLineCreateExtensions.Create extended with persisting the intersection point with the reference line.

Related to Issue [WTI-289]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@3323 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: 4e30012e3c25011a59829aeb5a0c4895b5a290e2

Former-commit-id: e6ff379b86efb9bf4f29186949df807eb1632014

  1. … 42 more files in changeset.
* Implemented Create methods for SurfaceLineEntity and SurfaceLinePointEntity. * Updated CreateConversionCollector for SurfaceLinePointEntity. ** Had to make Point3D implement IStorable. Related to Issue [WTI-289]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@3230 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: 838ab26832a99265a8b833090835844763e1e6bf

Former-commit-id: 971c6158c99812fa77b8695c1ed3066fae1b3436

  1. … 10 more files in changeset.
Small review changes Related to Issue [WTI-515]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@3201 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: eaadf4659338ca7736cebbda16331a315bfc4806

Former-commit-id: 8266a90288da14a0364c6791e99c35c9c7aabe6b

  1. … 28 more files in changeset.
Made methods in Storage project internal. Updated method names to be more descriptive. UpdateConversionCollector now actually throws a ArgumentNullException instead of a NullReferenceException. Related to Issue [WTI-290]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@3178 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: b8d2db616b3c6bbf96d30b08a078a8a99fb008f8

Former-commit-id: 0e11b366ccf017be3fbd91261f3bb5fb57b1875b

  1. … 30 more files in changeset.
Made FailureMechanismBase generic. Moved SectionResults property from IFailureMechanism to FailureMechanismBase. Added abstract CreateFailureMechanismSectionResult to FailureMechanismBase. Related to Issue [WTI-513]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@3175 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: 5d95d89730e72b20e0b3f25dad096ff4dfe544ce

Former-commit-id: 884cef5e2676d3181fe15398677d034af8213d97

  1. … 32 more files in changeset.
Added persistence for FailureMechanismSection objects for piping and placeholders. Related to Issue [WTI-367]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@3063 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: cf6ecc186750331b5a47ae8973d0514f3810c3ab

Former-commit-id: ca26fae176445c909b31f5e67156103381a2de67

  1. … 34 more files in changeset.
Completed documentation of Create/Update/Read related classes and tests. Related to Issue [WTI-290]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@3037 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: 137eab4929e69b1b7f0bff2d53d61cca25c2a06f

Former-commit-id: 68228cd5965689a79e91a0a88f61565039306367

  1. … 64 more files in changeset.
Renamed CreateConversionCollector.Add to CreateConversionCollector.Create to better distinguish it from the Update method in the derived UpdateConversionCollector. Added ReadConversionCollectorTest. Added doc. Related to Issue [WTI-290]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@3035 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: 0854964fe424b1154d9c334a49149576ed5e97ea

Former-commit-id: fa0b38498f038fe82f043ca69002e3d93fc3d023

    • -20
    • +127
    ./CreateConversionCollector.cs
  1. … 16 more files in changeset.
Added tests for CreateConversionCollector, UpdateConversionCollector and FailureMechanismPlacholder create and update extensions. Moved Garbage collect call to a finally block, so that it is called before disposing the FileDisposeHelper (and therefore deleting the accessed file.) Related to Issue [WTI-290]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@3034 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: 8ec1876d9f4b97f4aee3cba8ffd965bae45cbe36

Former-commit-id: 08de2ae969fed23afdb9c0f2f30500c7f2ebfb62

  1. … 22 more files in changeset.
New way of persisting: - Made use of partial character of Entities for reading and Extensions methods for creating and updating from domain model objects - Separated Create/Update/Read methods - Introduced collectors for post-create/read/update actions Added persistence for StochasticSoilModel, StochasticSoilProfile, PipingSoilProfile and PipingSoilLayer. Related to Issue [WTI-290]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@3020 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: 94828797dec0d2f76dbb040ae944fc5b3ece347c

Former-commit-id: d0b8db91d54ed85623f50a31b625bafc447251d6

    • -0
    • +134
    ./CreateConversionCollector.cs
  1. … 67 more files in changeset.