Skill.js
angular.module('homepage').
factory('Skill', function () {
function Skill() {
this.skillName = null;
this.totalExp = null;
this.versionNo = null;
this.studiedFrom = null;
this.selfRating = null;
}
return Skill;
});