service.js 316 Bytes
angular.module('focaModalBanco')
    .factory('focaModalBancoService', ['$http', 'API_ENDPOINT', function($http, API_ENDPOINT) {
        return {
            getBancos: function() {
                //TODO: Pasar filtro
                return $http.get(API_ENDPOINT.URL + '/banco');
            }
        };
    }]);