Example #1
0
 public DataTable GetUserInfo(int type)
 {
     try
     {
         var dao = new DaoUser();
         return(dao.GetUserInfoByEmailLogin(EmailLogin, type));
     }
     catch (Exception)
     {
         return(null);
     }
 }