コード例 #1
0
        public static WorkFlowClass GetWorkFlow(TypeOfWorkFlow Type, int QuantityOfSecond)
        {
            WorkFlowClass WorkFlow = new WorkFlowClass(Type, QuantityOfSecond);


            return(WorkFlow);
        }
コード例 #2
0
 private WorkFlowClass(TypeOfWorkFlow Type, int QuantityOfSecond)
 {
     this.Type                = Type;
     this.QuantityOfSecond    = QuantityOfSecond;
     IniticalQuantityOfSecond = QuantityOfSecond;
     StartTime                = DateTime.Now;
     TimeLeftPercent          = 385;
     KeysActivity             = 100;
     MouseActivity            = 100;
 }