20 lines
553 B
TypeScript
20 lines
553 B
TypeScript
import { RacingDomainValidationError } from '../errors/RacingDomainError';
|
|
|
|
export class AppliedAt {
|
|
private constructor(private readonly value: Date) {}
|
|
|
|
static create(value: Date): AppliedAt {
|
|
if (!(value instanceof Date) || isNaN(value.getTime())) {
|
|
throw new RacingDomainValidationError('AppliedAt must be a valid Date');
|
|
}
|
|
return new AppliedAt(new Date(value));
|
|
}
|
|
|
|
toDate(): Date {
|
|
return new Date(this.value);
|
|
}
|
|
|
|
equals(other: AppliedAt): boolean {
|
|
return this.value.getTime() === other.value.getTime();
|
|
}
|
|
} |