AssessmentAnywhere.Services.AccountActivation.AccountActivation.AccountActivation C# (CSharp) Method

AccountActivation() public method

public AccountActivation ( string activationCode, string username, System.DateTime expiry, bool completed, Func currentTimeProvider ) : System
activationCode string
username string
expiry System.DateTime
completed bool
currentTimeProvider Func
return System
        public AccountActivation(
            string activationCode,
            string username,
            DateTime expiry,
            bool completed,
            Func<DateTime> currentTimeProvider)
        {
            this.activationCode = activationCode;
            this.username = username;
            this.expiry = expiry;
            this.completed = completed;
            this.currentTimeProvider = currentTimeProvider;
        }