using System; using Yavsc.Model.WorkFlow; using System.Configuration; using Yavsc.Model.WorkFlow.Configuration; using System.Collections.Specialized; namespace Yavsc.Model.WorkFlow { /// /// New estimate even arguments. /// public class NewEstimateEvenArgs: EventArgs { private Estimate data=null; /// /// Gets the data. /// /// The data. public Estimate Data{ get { return data; } } /// /// Initializes a new instance of the class. /// /// Created. public NewEstimateEvenArgs(Estimate created) { data = created; } } }