namespace CCSTrace.CCS.Domain { // ReSharper disable once InconsistentNaming public enum CCSCaseState { EventInitial = 1000,// Create new event EventProcess = 1001,// Trace and process event in CCS WebService WaitForDespatch = 1002, // create DesRec EventDespatched = 1003, WaitForSponsor = 1005, // create SponRec WaitForRepair = 1006, // create RepairRec EventFinsh = 1007, // with no RepairRecord EventComplete = 1008, // with RepairRecord EventOver = 1009, // with RepairRecord but not upload EventReturn = 2001, // Return the EOSEventRecord AlarmFailure = 2002, // EOSEventRecord AlarmFailure EventTrasnfer = 2003 // EOSEventRecord Transfer to Process } }