Guest User

Untitled

a guest
Oct 23rd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. 1. service.getMarketedPrograms = function() {
  2. return $http.get( archApiUrl + "program/marketed-program" ).then(function( result ) {
  3. return result.data;
  4. });
  5. };
  6.  
  7. 2.service.getEligibility = function( params ) {
  8. return $http.get( maverickApiUrl + "quote/getEligibility", { params: params }).then( transformEligibility );
  9. };
Add Comment
Please, Sign In to add comment