public InvestorInstructionDto(InvestorInstructionIdentifierDto uniqueIdentifier, Way way, int quantity, decimal price, bool allowPartialExecution = false, DateTime?goodTill = null)
 {
     this.UniqueIdentifier = uniqueIdentifier;
     this.Way      = way;
     this.Quantity = quantity;
     this.Price    = price;
     this.AllowPartialExecution = allowPartialExecution;
     this.GoodTill = goodTill;
 }
 public InvestorInstructionUpdatedDto(InvestorInstructionIdentifierDto identifierDto, InvestorInstructionStatus status)
 {
     this.IdentifierDto = identifierDto;
     this.Status        = status;
 }
 private bool Equals(InvestorInstructionIdentifierDto other)
 {
     return(this.Value == other.Value);
 }