Blame view

app/partials/accountSetting/accountSetting.Controller.js 452 Bytes
3a9f4472b   Rishav   Implement contact...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  
  (function() {
      'use strict'
      
      angular.module('acufuel')
          .controller('AccountSettingController', [ '$scope', '$filter', '$rootScope', '$state', 'AccountSettingService', AccountSettingController]);
          
        function AccountSettingController($scope, $filter, $rootScope, $state, AccountSettingService) {
            
            AccountSettingService.getProducts().then(function(result) {
                  
            })
        }
  })();