29 lines
564 B
C#
29 lines
564 B
C#
|
|
|
|
using ServerCore;
|
|
using ServerBase;
|
|
|
|
|
|
namespace ServerCommon.BusinessLogDomain;
|
|
|
|
|
|
public class PartyInstanceBusinessLog : ILogInvokerEx
|
|
{
|
|
private PartyInstanceLogData m_data_to_log;
|
|
|
|
public PartyInstanceBusinessLog(PartyInstanceLogData logParam)
|
|
: base(LogDomainType.PartyInstance)
|
|
{
|
|
m_data_to_log = logParam;
|
|
}
|
|
|
|
public override bool hasLog()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
protected override void fillup(ref BusinessLog.LogBody body)
|
|
{
|
|
body.append(new PartyInstanceLogData(this, m_data_to_log));
|
|
}
|
|
} |