Company.js
angular.module('homepage').
factory('Company', function () {
function Company() {
this.companyName = null;
this.jobTitle = null;
this.startDate = null;
this.endDate = null;
this.projects = [];
}
return Company;
});