Exemplo n.º 1
0
        public Moderator(AbstractUser user = null)
        {
            if (null == user)
            {
                return;
            }

            this.Id            = user.Id;
            this.Name          = user.Name;
            this.LastName      = user.LastName;
            this.Email         = user.Email;
            this.BornDate      = user.BornDate;
            this.Gender        = user.Gender;
            this.Nationality   = user.Nationality;
            this.Status        = user.Status;
            this.RegisterDate  = user.RegisterDate;
            this.LastLoginDate = user.LastLoginDate;
        }
Exemplo n.º 2
0
        public AbstractUser(AbstractUser abstractUser = null)
        {
            if (null == abstractUser)
            {
                return;
            }

            this.Id            = abstractUser.Id;
            this.Name          = abstractUser.Name;
            this.LastName      = abstractUser.LastName;
            this.Email         = abstractUser.Email;
            this.Password      = abstractUser.Password;
            this.BornDate      = abstractUser.BornDate;
            this.Gender        = abstractUser.Gender;
            this.Nationality   = abstractUser.Nationality;
            this.Status        = abstractUser.Status;
            this.LoginTimes    = abstractUser.LoginTimes;
            this.RegisterDate  = abstractUser.RegisterDate;
            this.LastLoginDate = abstractUser.LastLoginDate;
        }
Exemplo n.º 3
0
 public Artist(AbstractUser abstractUser = null) : base(abstractUser)
 {
 }
Exemplo n.º 4
0
 public FinalUser(AbstractUser abstractUser = null) : base(abstractUser)
 {
 }
Exemplo n.º 5
0
 public Manager(AbstractUser abstractUser = null) : base(abstractUser)
 {
 }