Advertisement
myshkin1

Untitled

May 16th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. app.factory('someService', function() {
  2.   var someService = {  //build this object however you want
  3.     add: function() {
  4.  
  5.     },
  6.     save: function() {
  7.  
  8.     }
  9.   };
  10.  
  11.   return someService; //return the object
  12. }); //end factory
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement