public static IdentificationStorage getInstance()
 {
     if (singletonReference == null)
     {
         singletonReference = new IdentificationStorage();
     }
     return(singletonReference);
 }
Пример #2
0
 public Person(char userType)
 {
     id       = IdentificationStorage.getInstance().GenerateID(userType);
     password = "******";
 }