Slide 74
Slide 74 text
app.controller(‘fatHottyCtrl’,
function ($scope, $http) {
$scope.findAllHotties =
function () {
$http.get(…).then(…);
};
$scope.findOneHotty = …;
$scope.createHotty = …;
$scope.updateHotty = …;
$scope.deleteHotty = …;
}
);
app.controller(‘fatHottyCtrl2’,
function ($scope, $http) {
$scope.findAllHotties =
function () {
$http.get(…).then(…);
};
$scope.findOneHotty = …;
$scope.createHotty = …;
$scope.updateHotty = …;
$scope.deleteHotty = …;
app.service(‘hottyService’,
function ($http) {
this.findAllHotties =
function () { $http… };
this.findOneHotty = …;
this.createHotty = …;
this.updateHotty = …;
this.deleteHotty = …;
}
);