Initial commit

This commit is contained in:
Reynaldo Reyes
2016-02-29 00:49:18 -04:30
commit 90d22e3405
67 changed files with 4025 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
(function(){
'use strict';
angular
.module('app.student')
.factory('students', students)
.value('estudianteSeleccionado',{});
students.$inject = ['$resource','$rootScope'];
function students($resource, $rootScope){
return $resource('http://'+$rootScope.domainUrl+'/students/:id', null,
{
'update': {method:'PUT'}
});
};
})();