2021-04-08 20:09:59 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace ET
|
|
|
|
|
{
|
|
|
|
|
public partial class FamilyMemberInfo :ISupportInitialize
|
|
|
|
|
{
|
|
|
|
|
public Dictionary<long,int> dic = new Dictionary<long, int>();
|
|
|
|
|
|
|
|
|
|
public void BeginInit()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void EndInit()
|
|
|
|
|
{
|
|
|
|
|
dic.Clear();
|
2021-04-11 19:50:39 +08:00
|
|
|
|
foreach (FamilyContributionMap item in this.ContributionList)
|
2021-04-08 20:09:59 +08:00
|
|
|
|
{
|
|
|
|
|
dic.Add(item.Id, item.Value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|