festivals
Version:
All festivals in one place.
68 lines (56 loc) • 1.28 kB
JavaScript
'use strict';
var Category = function Category(id, parent, name, festival, createdAt, updatedAt) {
this.id = id;
this.parent = parent;
this.name = name;
this.festival = festival;
this.createdAt = createdAt;
this.updatedAt = updatedAt;
};
var CategoryBuilder = function CategoryBuilder() {
this.id = null;
this.parent = null;
this.name = null;
this.festival = null;
this.createdAt = null;
this.updatedAt = null;
var _this = this;
this.withId = function (id) {
_this.id = id;
return _this;
};
this.withParent = function (parent) {
_this.parent = parent;
return _this;
};
this.withName = function (name) {
_this.name = name;
return _this;
};
this.withFestival = function (festival) {
_this.festival = festival;
return _this;
};
this.withCreatedAt = function (createdAt) {
_this.createdAt = createdAt;
return _this;
};
this.withUpdatedAt = function (updatedAt) {
_this.updatedAt = updatedAt;
return _this;
};
this.build = function () {
return new Category(
_this.id,
_this.parent,
_this.name,
_this.festival,
_this.createdAt,
_this.updatedAt
);
};
};
module.exports = {
Category: Category,
CategoryBuilder: CategoryBuilder
};