FastQuant.AccountData.AccountData C# (CSharp) Method

AccountData() public method

public AccountData ( System.DateTime datetime, AccountDataType type, string account, byte providerId, byte route ) : System
datetime System.DateTime
type AccountDataType
account string
providerId byte
route byte
return System
        public AccountData(DateTime datetime, AccountDataType type, string account, byte providerId, byte route) : base(datetime)
        {
            Type = type;
            Account = account;
            ProviderId = providerId;
            Route = route;
        }
    }
AccountData