* @param holiday the Holiday to be inserted.
* @return the number of rows changed. It is 1, if successful, 0 otherwise.
* @see com.acelet.s.task.Holiday
*/
public static int insertHoliday(Connection connection, Holiday holiday) throws Exception {
return new TaskProcess(connection).insertHoliday(holiday);
}