using System; using System.Collections.Generic; using System.Text; using SalsaModel.Scheduling; namespace SalsaModel.Actions { class LeadOpenSRTurn : IAction { public void Start() { //throw new Exception("The method or operation is not implemented."); } public void Update(double percent) { //throw new Exception("The method or operation is not implemented."); } public void End() { //throw new Exception("The method or operation is not implemented."); } public string DescriptiveCode { get { return "Prep SR Turn"; } } } }