addHours method

EllaTime addHours(
  1. int value
)

Implementation

EllaTime addHours(int value)
{
  return addSeconds(value * secondsPerHour);
}