Sample Data
public static IEnumerable<ShippingData> GetSampleShippingData()
{
return new List<ShippingData>{ new ShippingData
{
Carrier = "Planet Express",
DateShipped = new DateTime(3000, 1, 1),
ServiceLevel = "Next Day Intragalactic"
}};
}
Hey, gotta have some fun at work.