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