public SeptemberBound() { Index = 9; Month = "September"; const int loopLength = 30; const int loopStartYear = 1929; var sequences = new[] { new[] { 8 }, new[] { 8, 7, 8, 8 }, new[] { 7, 8, 8, 7 }, new[] { 8, 7, 7, 7 } }; BoundDates = BoundsProvider.GetBoundDates(sequences, loopLength, loopStartYear); }
public AugustBound() { Index = 8; Month = "August"; const int loopLength = 30; const int loopStartYear = 1915; var sequences = new[] { new[] { 8 }, new[] { 8, 8, 8, 7 }, new[] { 8, 7, 7, 8 }, new[] { 7, 7, 8, 7 } }; BoundDates = BoundsProvider.GetBoundDates(sequences, loopLength, loopStartYear); }
public JulyBound() { Index = 7; Month = "July"; const int loopLength = 30; const int loopStartYear = 1927; var sequences = new[] { new[] { 8, 7, 7, 8 }, new[] { 7, 7, 8, 7 }, new[] { 7 }, new[] { 7, 7, 7, 6 } }; BoundDates = BoundsProvider.GetBoundDates(sequences, loopLength, loopStartYear); }
public DecemberBound() { Index = 12; Month = "December"; const int loopLength = 34; const int loopStartYear = 1919; var sequences = new[] { new[] { 8, 7, 7, 8 }, new[] { 7, 7, 8, 7 }, new[] { 7 }, new[] { 7, 7, 7, 6 } }; BoundDates = BoundsProvider.GetBoundDates(sequences, loopLength, loopStartYear); }
public AprilBound() { Index = 4; Month = "April"; const int loopLength = 32; const int loopStartYear = 1912; var sequences = new[] { new[] { 5, 5, 5, 6 }, new[] { 5 }, new[] { 4, 5, 5, 5 }, new[] { 4, 4, 5, 5 } }; BoundDates = BoundsProvider.GetBoundDates(sequences, loopLength, loopStartYear); }
public JanuaryBound() { Index = 1; Month = "January"; const int loopLength = 35; const int loopStartYear = 1913; var sequences = new[] { new[] { 6 }, new[] { 5, 6, 6, 6 }, new[] { 6, 5, 5, 6 }, new[] { 5, 6, 5, 5 } }; BoundDates = BoundsProvider.GetBoundDates(sequences, loopLength, loopStartYear); }
public FebruaryBound() { Index = 2; Month = "February"; const int loopLength = 34; const int loopStartYear = 1913; var sequences = new[] { new[] { 4, 4, 5, 5 }, new[] { 4, 5, 4, 4 }, new[] { 4 }, new[] { 4, 4, 3, 4 } }; BoundDates = BoundsProvider.GetBoundDates(sequences, loopLength, loopStartYear); }
public OctoberBound() { Index = 10; Month = "October"; const int loopLength = 32; const int loopStartYear = 1913; var sequences = new[] { new[] { 9, 9, 9, 8 }, new[] { 8, 9, 9, 8 }, new[] { 8, 8, 9, 8 }, new[] { 8 } }; BoundDates = BoundsProvider.GetBoundDates(sequences, loopLength, loopStartYear); }
public MarchBound() { Index = 3; Month = "March"; const int loopLength = 35; const int loopStartYear = 1912; var sequences = new[] { new[] { 6 }, new[] { 6, 5, 6, 6 }, new[] { 6, 6, 5, 5 }, new[] { 5, 5, 6, 5 } }; BoundDates = BoundsProvider.GetBoundDates(sequences, loopLength, loopStartYear); }
public JuneBound() { Index = 6; Month = "June"; const int loopLength = 30; const int loopStartYear = 1905; var sequences = new[] { new[] { 6, 6, 7, 6 }, new[] { 6 }, new[] { 6, 6, 6, 5 }, new[] { 6, 5, 5, 6 } }; BoundDates = BoundsProvider.GetBoundDates(sequences, loopLength, loopStartYear); }
public NovemberBound() { Index = 11; Month = "November"; const int loopLength = 33; const int loopStartYear = 1925; var sequences = new[] { new[] { 8, 8, 8, 7 }, new[] { 8, 8, 7, 7 }, new[] { 8, 7, 7, 7 }, new[] { 7 } }; BoundDates = BoundsProvider.GetBoundDates(sequences, loopLength, loopStartYear); }