service.js 365 Bytes
angular.module('focaModalTransportista')
    .service('focaModalTransportistaService', [
        '$http',
        'API_ENDPOINT',
        function($http, API_ENDPOINT) {
            return {
                getTransportistas: function() {
                    return $http.get(API_ENDPOINT.URL + '/transportista');
                }
            };
        }
    ]);