mirror of
https://gitlab.silvrtree.co.uk/martind2000/censis-archive.git
synced 2025-01-31 03:20:14 +00:00
21 lines
556 B
JavaScript
21 lines
556 B
JavaScript
import DS from 'ember-data';
|
|
|
|
export default DS.Model.extend({
|
|
cid: DS.attr('string'),
|
|
company_name: DS.attr('string'),
|
|
address1: DS.attr('string'),
|
|
address2: DS.attr('string'),
|
|
address3: DS.attr('string'),
|
|
town: DS.attr('string'),
|
|
county: DS.attr('string'),
|
|
postcode: DS.attr('string'),
|
|
country: DS.attr('string'),
|
|
pcontact: DS.attr('string'),
|
|
ocontact: DS.attr('string'),
|
|
mobile: DS.attr('string'),
|
|
email: DS.attr('string'),
|
|
needCompany: function() {
|
|
return typeof this.get('cid') !== 'undefined';
|
|
}.property('cid')
|
|
});
|