Пример #1
0
 public CashshopMileage(CashshopMileage.ProcessEnum processType)
 {
     this.CID         = 0L;
     this.Mileage     = 0;
     this.ProcessType = processType;
 }
Пример #2
0
 public CashshopMileage(long cid, int mileage, CashshopMileage.ProcessEnum processType)
 {
     this.CID         = cid;
     this.Mileage     = mileage;
     this.ProcessType = processType;
 }