29 lines
522 B
C#
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);
|
|
}
|
|
}
|