示例#1
0
        public MS_UserAccount_Response LoginAuthentication(MS_UserAccount_Request req)
        {
            MS_UserAccount_Response retVal = new MS_UserAccount_Response();

            try
            {
                retVal = DAL.LoginAuthentication(req);
            }
            catch (Exception ex)
            {
                retVal = null;
                throw ex;
            }
            finally
            {
            }
            return(retVal);
        }