﻿angular.module('WebOperations')
    .controller('IndexController', ['$scope', 'AuthenticationService', IndexController]);

function IndexController($scope, AuthenticationService) {

    $scope.authenticationInfo = AuthenticationService.AuthenticationInfo;

    $scope.Logout = function () {
        AuthenticationService.Logout();
    }
}