コード例 #1
0
ファイル: PasswordHistory.cs プロジェクト: xq2/mobile
        public PasswordHistoryData ToPasswordHistoryData()
        {
            var ph = new PasswordHistoryData();

            ph.LastUsedDate = LastUsedDate;
            BuildDataModel(this, ph, _map);
            return(ph);
        }
コード例 #2
0
ファイル: PasswordHistory.cs プロジェクト: xq2/mobile
 public PasswordHistory(PasswordHistoryData obj, bool alreadyEncrypted = false)
 {
     BuildDomainModel(this, obj, _map, alreadyEncrypted);
     LastUsedDate = obj.LastUsedDate.GetValueOrDefault();
 }