private ChannelMeasurementBase CreatePointVelocitySubActivity(GaugingSummaryItem gaugingSummary, DischargeActivity dischargeActivity)
 {
     return(_pointVelocityMapper.Map(gaugingSummary, dischargeActivity));
 }
Exemplo n.º 2
0
 private void SetupMockPointVelocityMapper()
 {
     _mockPointVelocityMapper = Substitute.For <IPointVelocityMapper>();
     _mockPointVelocityMapper.Map(null, null).ReturnsForAnyArgs((ManualGaugingDischargeSection)null);
 }
Exemplo n.º 3
0
 private ManualGaugingDischargeSection MapToManualGaugingDischargeSection()
 {
     return(_mapper.Map(_gaugingSummaryItem, _dischargeActivity));
 }