AjTalk.Transactions.Transaction.WasOpenedAfter C# (CSharp) Method

WasOpenedAfter() public method

public WasOpenedAfter ( long time ) : bool
time long
return bool
        public bool WasOpenedAfter(long time)
        {
            return time < this.Start; // TODO review Start negative
        }