* @return the number of rows changed. It is 1, if successful, 0 otherwise.
* @see com.acelet.s.task.Holiday
* @see #selectAllHolidays
*/
public static int deleteHoliday(Connection connection, long id) throws Exception {
return new TaskProcess(connection).deleteHoliday(id);
}