public UserDb(string fn, string email)
 {
     FullName     = fn;
     Email        = email;
     CreationDate = DateTime.Today;
     PpUser       = new PpUser(2);
 }
 public UserDb()
 {
     PpUser       = new PpUser(2);
     CreationDate = DateTime.Now;
 }