16 lines
459 B
C#
16 lines
459 B
C#
namespace YLErp.Modules.EodModule.SettlementModule
|
|
{
|
|
/// <summary>
|
|
/// 结算服务基类V2
|
|
/// </summary>
|
|
public class EodSettleServiceBaseV2 : YLBaseService
|
|
{
|
|
protected readonly EodSettlementContextV2 _context;
|
|
|
|
public EodSettleServiceBaseV2(EodSettlementContextV2 context) : base(context.UserInfo)
|
|
{
|
|
_context = context ?? throw new System.ArgumentNullException(nameof(context));
|
|
}
|
|
}
|
|
}
|