Cats.Models.ShippingInstruction.GetSIList C# (CSharp) Method

GetSIList() public method

public GetSIList ( ) : List
return List
        public List<ShippingInstruction> GetSIList()
        {
            List<ShippingInstruction> shippingInstructions = new List<ShippingInstruction>();

            shippingInstructions.Add(new Cats.Models.ShippingInstruction { ShippingInstructionID = 104, Value = "00013753" });

            shippingInstructions.Add(new Cats.Models.ShippingInstruction { ShippingInstructionID = 102, Value = "00014110" });

            return shippingInstructions;
        }