var exportBatchInputs = new List<TbExportBatchInput>()
{
TestHelper.Fixture.Build<TbExportBatchInput>()
.With(c => c.ExportBatchId, TestHelper.BatchID)
.With(c=>c.FieldName, "PO Box") // note the spacing between the fat arrow here
.With(c=>c.FieldData, "12345") // note the spacing between the fat arrow here
.Create()
};
var exportBatchInputs = new List<TbExportBatchInput>()
{
TestHelper.Fixture.Build<TbExportBatchInput>()
.With(c => c.ExportBatchId, TestHelper.BatchID)
.With(c=>c.FieldName, "PO Box") // note the spacing between the fat arrow here
.With(c=>c.FieldData, "12345") // note the spacing between the fat arrow here
.Create()
};