public VIPState(ClubState state)
     : this(state.Balance, state.Account)
 {
     Balance = state.Balance;
 }
예제 #2
0
 public VisitorState(ClubState state)
     : this(state.Balance, state.Account)             //调用本类的构造函数
 {
 }
예제 #3
0
 public VIPState(ClubState state)
     : this(state.Balance, state.Account)
 {
     Balance = state.Balance;
 }
 //调用本类的构造函数
 public VisitorState(ClubState state)
     : this(state.Balance, state.Account)
 {
 }
 public MemberState(ClubState state)
     : this(state.Balance, state.Account)             //调用本类的构造函数
 {
     Balance = state.Balance;
     Initialize();
 }
 //调用本类的构造函数
 public MemberState(ClubState state)
     : this(state.Balance, state.Account)
 {
     Balance = state.Balance;
     Initialize();
 }