초기커밋
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
|
||||
using ServerBase;
|
||||
|
||||
|
||||
namespace ServerCommon.BusinessLogDomain;
|
||||
|
||||
public class FarmingRewardBusinessLog : ILogInvokerEx
|
||||
{
|
||||
private readonly FarmingRewardLogInfo m_farming_reward_log_info;
|
||||
|
||||
public FarmingRewardBusinessLog(LogAction logAction, FarmingRewardLogInfo logInfo)
|
||||
: base(LogDomainType.FarmingReward, logAction)
|
||||
{
|
||||
m_farming_reward_log_info = new FarmingRewardLogInfo(this, logInfo);
|
||||
}
|
||||
|
||||
public override bool hasLog()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
protected override void fillup(ref BusinessLog.LogBody body)
|
||||
{
|
||||
body.append(m_farming_reward_log_info);
|
||||
}
|
||||
|
||||
public FarmingRewardLogInfo getInfo()
|
||||
{
|
||||
return m_farming_reward_log_info;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user