AllocStatus Field
Наследование: IntField
Пример #1
0
 public AllocationInstructionAck(
     QuickFix.Fields.AllocID aAllocID,
     QuickFix.Fields.AllocStatus aAllocStatus
     ) : this()
 {
     this.AllocID     = aAllocID;
     this.AllocStatus = aAllocStatus;
 }
Пример #2
0
 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;
 }
Пример #4
0
 public bool IsSet(QuickFix.Fields.AllocStatus val)
 {
     return(IsSetAllocStatus());
 }
Пример #5
0
 public QuickFix.Fields.AllocStatus Get(QuickFix.Fields.AllocStatus val)
 {
     GetField(val);
     return(val);
 }
Пример #6
0
 public void Set(QuickFix.Fields.AllocStatus val)
 {
     this.AllocStatus = val;
 }
 public void Set(QuickFix.Fields.AllocStatus val) 
 { 
     this.AllocStatus = val;
 }
Пример #8
0
 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()));
 }