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

29 lines
522 B
C#

using ServerCore;
using ServerBase;
namespace ServerCommon.BusinessLogDomain;
public class RentalBusinessLog : ILogInvokerEx
{
private RentalLogInfo m_data_to_log;
public RentalBusinessLog(RentalLogInfo logParam)
: base(LogDomainType.Rental)
{
m_data_to_log = new RentalLogInfo(this, logParam);
}
public override bool hasLog()
{
return true;
}
protected override void fillup(ref BusinessLog.LogBody body)
{
body.append(m_data_to_log);
}
}