Education.js
angular.module('homepage').
// Store templates, location and widget data
factory('Education', function () {
function Education() {
this.educationTitle = null;
this.studiedFrom = null;
this.startDate = null;
this.endDate = null;
this.specialization = null;
this.score = null;
}
return Education;
});