27 lines
515 B
C#
27 lines
515 B
C#
|
|
using ServerBase;
|
|
|
|
namespace ServerCommon.BusinessLogDomain;
|
|
|
|
public class BuildingBusinessLog : ILogInvokerEx
|
|
{
|
|
private BuildingLogInfo m_data_to_log;
|
|
|
|
|
|
public BuildingBusinessLog(BuildingLogInfo logParam)
|
|
: base(LogDomainType.Building)
|
|
{
|
|
m_data_to_log = new BuildingLogInfo(this, logParam);
|
|
}
|
|
|
|
public override bool hasLog()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
protected override void fillup(ref BusinessLog.LogBody body)
|
|
{
|
|
body.append(m_data_to_log);
|
|
}
|
|
}
|