public static void Main()
Console.WriteLine("Hello World");
module webAngular.ApplicationManagement {
export interface IBaseScope extends ng.IScope {
module webAngular.ApplicationManagement {
export class losoHostController {
static $inject = ["$scope", "$rootScope", "$routeParams"];
constructor(private $scope: IBaseScope, private $rootScope: ng.IRootScopeService,
private $routeParams: ng.route.IRouteParamsService, private injector: ng.auto.IInjectorService) {
this.$scope.ProfileTitle = "Profile-Sujith";
angular.module("loso.FunApp").controller("losoHostController", losoHostController);