コード例 #1
0
ファイル: HomeController.cs プロジェクト: wiiatgit/HubLink
        //
        // GET: /Home/

        public ActionResult Index()
        {
            List <ApplicationHomeModel> result = new List <ApplicationHomeModel>();

            if (UserProfileContext.Current.User != null)
            {
                WLogRoleProvider roleProvider = new WLogRoleProvider();

                UserEntity currentUser        = RepositoryContext.Current.Users.GetByUsername(Membership.GetUser().UserName);
                List <ApplicationEntity> apps = RepositoryContext.Current.Applications.GetAppplicationForUser(currentUser);
                result.AddRange(ConversionHelper.ConvertListEntityToListApplicationHome(apps));
            }
            return(View(result));
        }
コード例 #2
0
ファイル: HomeController.cs プロジェクト: arduosoft/wlog
        //
        // GET: /Home/
        public ActionResult Index()
        {
            List<ApplicationHomeModel> result = new List<ApplicationHomeModel>();
            if (UserProfileContext.Current.User != null)
            {
                WLogRoleProvider roleProvider = new WLogRoleProvider();

                UserEntity currentUser=RepositoryContext.Current.Users.GetByUsername(Membership.GetUser().UserName);
                List<ApplicationEntity> apps = RepositoryContext.Current.Applications.GetAppplicationForUser(currentUser);
                result.AddRange(ConversionHelper.ConvertListEntityToListApplicationHome(apps));

            }
            return View(result);
        }