()
| 12 | module.exports = (Purchase = (function () { |
| 13 | Purchase = class Purchase extends CocoModel { |
| 14 | static initClass () { |
| 15 | this.className = 'Purchase' |
| 16 | this.prototype.urlRoot = '/db/purchase' |
| 17 | this.schema = require('schemas/models/purchase.schema') |
| 18 | } |
| 19 | |
| 20 | static makeFor (toPurchase) { |
| 21 | return new Purchase({ |