Esempio n. 1
0
        public ShowUserInformation UserRegistration(UserModel data)
        {
            SqlConnection connection = DatabaseConnection();

            try
            {
                //password encrption
                string encryptedPassword = PasswordEncryptDecrypt.EncodePasswordToBase64(data.Password);
                //for store procedure and connection to database
                SqlCommand command = StoredProcedureConnection("spRegisterUser", connection);
                command.Parameters.AddWithValue("@EmailID", data.EmailID);
                command.Parameters.AddWithValue("@Password", encryptedPassword);
                command.Parameters.AddWithValue("@UserName", data.UserName);
                command.Parameters.AddWithValue("@RegistrationDate", DateTime.Now);
                connection.Open();
                SqlDataReader reader = command.ExecuteReader();

                if (reader.Read() == false)
                {
                    return(null);
                }
                else
                {
                    return(new ShowUserInformation
                    {
                        Id = reader.GetInt32(0),
                        EmailID = reader.GetString(1),
                        UserName = reader.GetString(3),
                        RegistationDate = reader.GetDateTime(4).ToString()
                    });
                }
            }
            catch (Exception e)
            {
                throw new Exception(e.Message);
            }
            finally
            {
                connection.Close();
            }
        }
Esempio n. 2
0
        public ShowUserInformation UserLogin(LoginModel data)
        {
            SqlConnection connection = DatabaseConnection();

            try
            {
                SqlCommand command = StoredProcedureConnection("spLoginUser", connection);
                command.Parameters.Add("@EmailID", SqlDbType.VarChar, 50).Value  = data.EmailID;
                command.Parameters.Add("@Password", SqlDbType.VarChar, 50).Value = PasswordEncryptDecrypt.EncodePasswordToBase64(data.Password);
                connection.Open();
                SqlDataReader reader = command.ExecuteReader();

                if (reader.Read() == false)
                {
                    return(null);
                }
                else
                {
                    return(new ShowUserInformation
                    {
                        Id = reader.GetInt32(0),
                        EmailID = reader.GetString(1),
                        UserName = reader.GetString(3),
                        RegistationDate = reader.GetDateTime(4).ToString()
                    });
                }
            }
            catch (Exception exception)
            {
                throw new Exception(exception.Message);
            }
            finally
            {
                connection.Close();
            }
        }