express-typeorm-rest-boilerplate
Version:
Boilerplate code to get started with building RESTful API Services
42 lines • 2.01 kB
JavaScript
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const JobApplication_1 = require("../../api/entities/JobApplication");
const JobApplicationFactory_1 = __importDefault(require("../factories/JobApplicationFactory"));
const EntitySeed_1 = __importDefault(require("./EntitySeed"));
class JobApplicationSeed {
constructor(repo, user, company) {
this.jobApplicationSeed = new EntitySeed_1.default(repo, JobApplicationFactory_1.default);
this.user = user;
this.company = company;
}
seedOne(data) {
return __awaiter(this, void 0, void 0, function* () {
data = data || new JobApplication_1.JobApplication();
data.user = this.user;
data.company = this.company;
return yield this.jobApplicationSeed.seedOne(data);
});
}
seedMany(amount) {
return __awaiter(this, void 0, void 0, function* () {
return yield this.jobApplicationSeed.seedMany(amount, {
user: this.user,
company: this.company,
});
});
}
}
exports.default = JobApplicationSeed;
//# sourceMappingURL=JobApplicationSeed.js.map
;