private void NewAccount(C.NewAccount p) { if (Stage != GameStage.Login) { return; } SMain.Envir.NewAccount(p, this); }
public AccountInfo(C.NewAccount p) { AccountID = p.AccountID; Password = p.Password; UserName = p.UserName; SecretQuestion = p.SecretQuestion; SecretAnswer = p.SecretAnswer; EMailAddress = p.EMailAddress; BirthDate = p.BirthDate; CreationDate = Envir.Now; }