BesAsm.Swsp.PacSizingTool.RainfallEvent.RainfallEvent C# (CSharp) Method

RainfallEvent() private method

private RainfallEvent ( string eventName, IEnumerable rainfallInches, double timeIntervalMinutes ) : System
eventName string
rainfallInches IEnumerable
timeIntervalMinutes double
return System
        internal RainfallEvent(string eventName, IEnumerable<double> rainfallInches, double timeIntervalMinutes)
        {
            _eventName = eventName;
              _rainfallInches = rainfallInches.ToList();
              _timeIntervalMinutes = timeIntervalMinutes;
        }