File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
FikaAmazonAPI/ConstructFeed/Messages Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -318,7 +318,8 @@ public void CartonContentsRequestFeed()
318
318
new CartonItem ( ) {
319
319
QuantityInCase = 12 ,
320
320
QuantityShipped = 12 ,
321
- SKU = "4051"
321
+ SKU = "4051" ,
322
+ ExpirationDate = DateTime . Now ,
322
323
}
323
324
}
324
325
}
Original file line number Diff line number Diff line change @@ -40,5 +40,11 @@ public class CartonItem
40
40
public int QuantityShipped { get ; set ; }
41
41
[ XmlElement ( ElementName = "QuantityInCase" ) ]
42
42
public int QuantityInCase { get ; set ; }
43
+ [ XmlElement ( ElementName = "ExpirationDate" ) ]
44
+ public Nullable < DateTime > ExpirationDate { get ; set ; }
45
+
46
+ [ XmlIgnore ]
47
+ public bool ExpirationDateSpecified { get { return ExpirationDate != null ; } }
48
+
43
49
}
44
50
}
You can’t perform that action at this time.
0 commit comments