Frequency(- String pName,
- bool pIsOnce,
- bool pIsDynamic,
- int pTimesPerDay,
- int pTimesPerWeek,
- int pTimesPerMonth,
- int pTimesPerYear,
- List<String> pHoursAtDay,
- List<String> pDaysAtWeek,
- List<String> pDaysAtMonth,
- List<String> pDaysAtYear
)
Implementation
Frequency(
String pName,
bool pIsOnce,
bool pIsDynamic,
int pTimesPerDay,
int pTimesPerWeek,
int pTimesPerMonth,
int pTimesPerYear,
List<String> pHoursAtDay,
List<String> pDaysAtWeek,
List<String> pDaysAtMonth,
List<String> pDaysAtYear) {
this.name = pName;
this.isOnce = pIsOnce;
this.isDynamic = pIsDynamic;
this.timesPerDay = pTimesPerDay;
this.timesPerWeek = pTimesPerWeek;
this.timesPerMonth = pTimesPerMonth;
this.timesPerYear = pTimesPerYear;
this.hoursAtDay = pHoursAtDay;
this.daysAtWeek = pDaysAtWeek;
this.daysAtMonth = pDaysAtMonth;
this.daysAtYear = pDaysAtYear;
}