latest updates
[namibia] / public / templates / page / dealerview.js
1 var template_dealerview = function( static )
2 {
3         this.static   = static;
4         this.elements = {
5                         firstName : new App.TemplateElement.FieldComponent('firstName'),
6                         familyName : new App.TemplateElement.FieldComponent('familyName'),
7                         office : new App.TemplateElement.FieldComponent('office'),
8                         mobile : new App.TemplateElement.FieldComponent('mobile'),
9                         email : new App.TemplateElement.FieldComponent('email'),
10
11                         country : new App.TemplateElement.FieldComponent('country'),
12                         region : new App.TemplateElement.FieldComponent('region'),
13                         city : new App.TemplateElement.FieldComponent('city'),
14                         street : new App.TemplateElement.FieldComponent('street'),
15                         postalCode : new App.TemplateElement.FieldComponent('postalCode'),
16
17                         name : new App.TemplateElement.FieldComponent('name'),
18                         businessName : new App.TemplateElement.FieldComponent('businessName'),
19                         companyRegistrationNumber : new App.TemplateElement.FieldComponent('companyRegistrationNumber'),
20                         vatNumber : new App.TemplateElement.FieldComponent('vatNumber'),
21                         dealerStockNumber : new App.TemplateElement.FieldComponent('dealerStockNumber'),
22                         companyType : new App.TemplateElement.FieldComponent('companyType')
23                 };
24         this.construct = function() {};
25         this.destruct  = function() {};
26 };