/trunk/Kona.Model/Order/OrderStates/Submitted.cs
C# | 27 lines | 22 code | 4 blank | 1 comment | 0 complexity | 9d656d6f50fc42919b99027afdc18062 MD5 | raw file
Possible License(s): BSD-3-Clause
1using System; 2using System.Collections.Generic; 3using System.Linq; 4using System.Text; 5 6namespace Kona.Model { 7 [Serializable] 8 public class Submitted : OrderState { 9 public Submitted() { } 10 public Submitted(Order order) 11 : base(order) { 12 this.ID = 2; 13 } 14 15 16 public override void Submit() { 17 //ignore 18 } 19 20 public override void Cancel() { 21 _Cancel(); 22 } 23 public override void Verify() { 24 _Verify(); 25 } 26 } 27}