Files
caliverse_server/ServerCommon/BusinessLog/LogInvoker/AddressBusinessLog.cs
2025-05-01 07:20:41 +09:00

36 lines
646 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ServerCore;
using ServerBase;
namespace ServerCommon.BusinessLogDomain;
public class AddressBusinessLog : ILogInvokerEx
{
private AddressLogInfo m_data_to_log;
public AddressBusinessLog(AddressLogInfo logParam)
: base(LogDomainType.Address)
{
m_data_to_log = new AddressLogInfo(this, logParam);
}
public override bool hasLog()
{
return true;
}
protected override void fillup(ref BusinessLog.LogBody body)
{
body.append(m_data_to_log);
}
}