using System;
using System.Collections.Generic;
using System.Text;
namespace GreenTree.Maschinenbestellungen.Core.Helper
{
public interface IUserHelper
{
///
/// Generates a MD5 hash from a string
///
/// The string to encrypt.
/// Return hashed string in lower case.
public string HashString(string str, bool lowerCase);
}
}