コード例 #1
0
ファイル: SessionDTO.cs プロジェクト: haiderkazm/LushTeez
        public int getRole()
        {
            SessionDTO ndto = (SessionDTO)HttpContext.Current.Session["Session"];

            return((ndto != null) ? ndto.Role : -1);
        }
コード例 #2
0
ファイル: SessionDTO.cs プロジェクト: haiderkazm/LushTeez
        public string getEmail()
        {
            SessionDTO ndto = (SessionDTO)HttpContext.Current.Session["Session"];

            return(ndto?.Email);
        }
コード例 #3
0
ファイル: SessionDTO.cs プロジェクト: haiderkazm/LushTeez
        public string getName()
        {
            SessionDTO ndto = (SessionDTO)HttpContext.Current.Session["Session"];

            return(ndto?.Name);
        }