public AllocationInstructionAck( QuickFix.Fields.AllocID aAllocID, QuickFix.Fields.AllocStatus aAllocStatus ) : this() { this.AllocID = aAllocID; this.AllocStatus = aAllocStatus; }
public AllocationACK( QuickFix.Fields.AllocID aAllocID, QuickFix.Fields.TradeDate aTradeDate, QuickFix.Fields.AllocStatus aAllocStatus ) : this() { this.AllocID = aAllocID; this.TradeDate = aTradeDate; this.AllocStatus = aAllocStatus; }
public AllocationInstructionAck( QuickFix.Fields.AllocID aAllocID, QuickFix.Fields.TransactTime aTransactTime, QuickFix.Fields.AllocStatus aAllocStatus ) : this() { this.AllocID = aAllocID; this.TransactTime = aTransactTime; this.AllocStatus = aAllocStatus; }
public bool IsSet(QuickFix.Fields.AllocStatus val) { return(IsSetAllocStatus()); }
public QuickFix.Fields.AllocStatus Get(QuickFix.Fields.AllocStatus val) { GetField(val); return(val); }
public void Set(QuickFix.Fields.AllocStatus val) { this.AllocStatus = val; }
public void EnumFieldTest() { CommType ct = new CommType(CommType.PER_UNIT); Assert.That('1', Is.EqualTo(ct.getValue())); ExecInst ei = new ExecInst(ExecInst.STRICT_LIMIT); Assert.That("b", Is.EqualTo(ei.getValue())); AllocStatus ass = new AllocStatus(AllocStatus.REVERSED); Assert.That(7, Is.EqualTo(ass.getValue())); }