Skip to content

Instantly share code, notes, and snippets.

@eduardordm
Created July 31, 2014 01:14
Show Gist options
  • Save eduardordm/bae0d45f0abffda1731b to your computer and use it in GitHub Desktop.
Save eduardordm/bae0d45f0abffda1731b to your computer and use it in GitHub Desktop.
'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