public override void UnderTheseConditions()
 {
     postCodeAreaSpec = MockRepository.GenerateMock<PostCodeAreaSpecification>();
     postCodeFormatSpec = MockRepository.GenerateMock<PostCodeFormatSpecification>();
     childEntityFactory = MockRepository.GenerateMock<ICustomerChildEntityFactory>();
     testStatus = PolicyStatuses.ApplicationPending;
     testComment = "testComment";
     testName = "bob";
     testCustId = 999;
 }
 public AccountInstruction(PolicyStatuses status, String instructionComment)
 {
     this.polStatus = status;
     this.comment = instructionComment;
 }