초기커밋
This commit is contained in:
35
ServerCommon/BusinessLog/LogInvoker/AddressBusinessLog.cs
Normal file
35
ServerCommon/BusinessLog/LogInvoker/AddressBusinessLog.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user