public virtual void ApplyEntity(AccountResponse account) { this.AccountId = account.AccountId; this.AccountName = account.AccountName; this.AccountStatus = account.AccountStatus; this.Name = account.Name; this.ProfileImage = account.ProfileImage; this.ProfileThumbnail = account.ProfileThumbnail; this.Gender = account.Gender; this.Identity = account.Identity; this.Phone = account.Phone; this.Email = account.Email; }
public override void ApplyEntity(AccountResponse account) { base.ApplyEntity(account); }
public override void ApplyEntity(AccountResponse account) { this.Token = account.Token; this.LastLoginDateTime = account.LastLoginDateTime; base.ApplyEntity(account); }