Created
July 31, 2014 01:14
-
-
Save eduardordm/bae0d45f0abffda1731b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
portalServidorApp.controller('UnidadeController', ['$scope', 'resolvedUnidade', 'Unidade', | |
function ($scope, resolvedUnidade, Unidade) { | |
$scope.unidades = resolvedUnidade; | |
$scope.create = function () { | |
Unidade.save($scope.unidade, | |
function () { | |
$scope.unidades = Unidade.query(); | |
$('#saveUnidadeModal').modal('hide'); | |
$scope.clear(); | |
}); | |
}; | |
$scope.update = function (id) { | |
$scope.unidade = Unidade.get({id: id}); | |
$('#saveUnidadeModal').modal('show'); | |
}; | |
$scope.delete = function (id) { | |
Unidade.delete({id: id}, | |
function () { | |
$scope.unidades = Unidade.query(); | |
}); | |
}; | |
$scope.clear = function () { | |
$scope.unidade = {id: null, sampleTextAttribute: null, sampleDateAttribute: null}; | |
}; | |
}]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment